xxxxxxxxxx
15
// port of Daniel Shiffman's pde SolarSystemGenerator by madacoo
function setup() {
createCanvas(windowWidth, windowHeight);
sun = new Planet(50, 0, 0, random(TWO_PI),color(255,255,51));
sun.spawnMoons(2, 1);
}
function draw() {
background(51,100);
translate(width / 2, height / 2);
sun.show();
sun.orbit();
}