mirror of
https://github.com/opus-tango/GravityDev3.git
synced 2026-03-19 19:52:51 +00:00
Simple info update commit
This commit is contained in:
@@ -1,3 +1,16 @@
|
||||
/*
|
||||
GravityDev3
|
||||
Third iteration of a 2D gravity simulator.
|
||||
by Nayan Sawyer
|
||||
started Mar 2022
|
||||
version 0.3.4 Mar 31 2022
|
||||
|
||||
Features include clicking on a planet to lock onto it, center a focussed
|
||||
planet, and pan/zoom. Next version planned will be written in C++ for better
|
||||
acuracy and memory management, as this one has floating point imprecision
|
||||
issues, and Processing is not effecient with memory.
|
||||
|
||||
*/
|
||||
|
||||
PlanetManager pm; // Manages Planets
|
||||
Gui gui; // Contains and manages gui
|
||||
|
||||
1
mGui.pde
1
mGui.pde
@@ -20,6 +20,7 @@ class Gui {
|
||||
}
|
||||
}
|
||||
|
||||
//Center button
|
||||
class CButton extends Button{
|
||||
|
||||
CButton(){
|
||||
|
||||
5
readme.md
Normal file
5
readme.md
Normal file
@@ -0,0 +1,5 @@
|
||||
# GravityDev3
|
||||
Third iteration of a 2D gravity simulator. Features include clicking on a planet to lock onto it, center a focussed
|
||||
planet, and pan/zoom. Next version planned will be written in C++ for better
|
||||
acuracy and memory management, as this one has floating point imprecision
|
||||
issues, and Processing is not effecient with memory.
|
||||
Reference in New Issue
Block a user