Skip to content

Instantly share code, notes, and snippets.

@BlogBlocks
Last active December 2, 2017 19:11
Show Gist options
  • Save BlogBlocks/29f9c2a9d14ba67f2464c9c1cacaff71 to your computer and use it in GitHub Desktop.
Save BlogBlocks/29f9c2a9d14ba67f2464c9c1cacaff71 to your computer and use it in GitHub Desktop.
Processing solarsys SUN
Planet sun;
void setup() { size(600, 600);
sun = new Planet(50, 0, 0);
sun.spawnMoons(5, 1);
}
void draw() {
background(0);
translate(width/2, height/2);
sun.show();
sun.orbit();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment