xxxxxxxxxx
20
function setup() {
createCanvas(400, 400);
}
function draw() {
background(255);
translate(width/2, height/2);
//rotate(radians(frameCount));
strokeWeight(3);
stroke(255, 0, 0);
line(0, 0, 25, 0);
line(25, 0, 25 - 3, 0 + 3);
line(25, 0, 25 - 3, 0 - 3);
stroke(0, 255, 0);
line(0, 0, 0, 25);
line(0, 25, 0 + 3, 25 - 3);
line(0, 25, 0 - 3, 25 - 3);
}