xxxxxxxxxx
22
function setup() {
createCanvas(600, 600);
background(color('lightblue'));
noStroke();
frameRate(30);
angleMode(DEGREES);
}
function draw() {
translate(width/2,height/2);
rotate(-90);
push();
translate(0, -15);
fill(color('darkorange'));
triangle(0,-15,15,40,-15,40);
pop();
}
function step(){
}