Code
var x = 250;
var y = 300;
draw = function() {
background(113, 230, 230);
//grass
noStroke();
fill(25, 204, 61);
rect(0, 300, 410, 300);
//cape
fill(255, 0, 0);
triangle(240, 210, 270, 210, 290, 240);
//person
fill(20, 18, 18);
ellipse(250, 200, 30, 30);
stroke(0, 0, 0);
strokeWeight(3);
line(250, 260, 250, 210);
line(250, 240, 220, 200);
line(220, 220, 250, 240);
line(251, 260, 269, 300);
line(251, 260, 230, 300);
x = - 90;
y = - 90;
};
All I need to do is make this image of a superhero fly. Halp pl0x
This post was edited by Shakti on Sep 12 2016 09:33pm