xxxxxxxxxx
60
function setup() {
createCanvas(400, 400);
angleMode(DEGREES);
ellipseMode (CENTER);
sun1 = {
x:100,
y: 100,
scale: .65,
points: 40,
startAngle: 50,
strokeWeight:5,
stroke:'goldenrod',
fill: 'darkgoldenrod'
}
sun2 = {
x:190,
y: 330,
scale: .45,
points: 50,
startAngle: 50,
strokeWeight:2,
stroke:'burlywood',
fill: 'rosybrown'
}
sun3 = {
x:325,
y: 200,
scale: .55,
points: 45,
startAngle: 50,
strokeWeight: 3,
stroke:'sandybrown',
fill: 'slategrey'
}
}
function draw() {
background('darkblue');
addSun (sun1);
addSun (sun2);
addSun (sun3);
}
function addSun (sun) {
push ();
translate (sun.x, sun.y);
scale (sun.scale);
for (let raysDrawn = 0; raysDrawn < sun.points; raysDrawn++)
{ rotate (sun.startAngle);
strokeWeight (sun.strokeWeight)
stroke (sun.stroke)
line (25,25,100,50);
}
strokeWeight (3)
fill (sun.fill)
ellipse (0,0,60,60)
pop ();
}