0
hshijack skank
In the code, the function setup() creates an empty canvas. The function draw() then draws a line from (10,200,45) to (12,45).
0 Comments
function setup(){ createCanvas(windwoWidth, windowHeight); background(0); } function draw(){ line(10,200,45,12); }