Ao colocar esse código:
let xBolinha = 300 let yBolinha = 200 let Diâmetro = 22
function setup() { createCanvas(600 , 400 )}
function draw () {background(0)
circle(xBolinha,yBolinha,Diâmetro); fill = color (205,204,0)
}
Aparece essa a resposta: "You just changed the value of "fill", which was a p5 function. This could cause problems later if you're not careful. "
Ao colocar esse código tirado de um exemplo da plataforma:
let xBolinha = 300 let yBolinha = 200 let Diâmetro = 22 let c = color(255, 204, 0); // Define color 'c' fill(c); // Use color variable 'c' as fill color
function setup() { createCanvas(600 , 400 )}
function draw () {background(0)
circle(xBolinha,yBolinha,Diâmetro);
Aparece essa mensagem: "ReferenceError: color is not defined"