xxxxxxxxxx
40
/* James Glover color project
Date: Feb 3 2025
I made a very abstract bow
*/
function setup() {
createCanvas(400, 400);
rectMode(CENTER);
}
function draw() {
background(24, 204, 245);
//the string
strokeWeight(10);
stroke(255)
line(250, 60, 330, 290);
//the body
strokeWeight(2);
stroke(0);
fill(217, 213, 237);
circle(200, 140, 200);
fill(62, 103, 237)
rect(120, 200, 210, 170);
fill(62, 237, 117);
rect(250, 320, 170, 90);
//all out of arrows sorry :(
}
function mousePressed() {
save("color.png")
}