leftover spider pics
in
Programming Questions
•
19 days ago
I guess what I'm trying to say is that I want him tracked with his pics of itself after being moved around. So, this would need to be moved by the mouse and have it's picture left behind itself. Therefore, the spider would fill the whole page with itself. If anyone can help me please do! I would greatly appreciate it :)
void setup() {
size(800, 800);
background(#393636);
}
void draw() {
//body
strokeWeight(6);
stroke(0, 0, 0);
fill(62, 35, 139);
ellipse(550, 350, 200, 200);
ellipse(550, 450, 150, 150);
//eyes
stroke(255, 0, 0);
point(500, 450);
point(525, 450);
point(575, 450);
point(600, 450);
point(510, 475);
point(535, 475);
point(565, 475);
point(590, 475);
//fangs
stroke(255, 0, 0);
quad(520, 510, 500, 520, 500, 530, 520, 560);
quad(580, 510, 600, 520, 600, 530, 580, 560);
//legs
stroke(0, 0, 0);
line(470, 400, 450, 500);
line(630, 400, 650, 500);
line(455, 385, 425, 505);
line(650, 380, 675, 510);
line(475, 285, 400, 505);
line(630, 285, 700, 505);
line(490, 280, 450, 200);
line(615, 280, 650, 200);
}
1