xxxxxxxxxx
41
/*
Is an eclipse
*/
function setup() {
createCanvas(640, 480);
strokeWeight(7);
noCursor();
}
function draw() {
background("Black");
var x = mouseX;
var y = mouseY;
fill("white");
ellipse( x ,mouseY, 300, 300); //moon
fill("yellow")
ellipse( mouseX,x, mouseY,y, 320,y, 100); //sun
fill("white")
ellipse(mouseX-4, mouseY+191,x,35, 10) //shadow of the moon
fill("red")
rect(1, 3, 990,50) // decoration
rect(1, 430, 990,50) //decoration
}
function mousePressed(){
save('Self Portrait w/ Variables-1.jpg')
}