about summary refs log tree commit diff
path: root/rocket.py
diff options
context:
space:
mode:
authorBaitinq <you@example.com>2022-02-09 18:46:52 +0000
committerBaitinq <you@example.com>2022-02-09 18:46:52 +0000
commit07aa1b5ef617d0ba7a58c47ce6670a4d3876694e (patch)
tree0e65bb722bad826f5d6d0a0f75bdcaa144040026 /rocket.py
parentImplemented force calculation for x coordinate (diff)
downloadOSLS-07aa1b5ef617d0ba7a58c47ce6670a4d3876694e.tar.gz
OSLS-07aa1b5ef617d0ba7a58c47ce6670a4d3876694e.tar.bz2
OSLS-07aa1b5ef617d0ba7a58c47ce6670a4d3876694e.zip
Implemented basic version of x movement
Right now gimble = heading, which shouldnt be the case. TODO
Diffstat (limited to 'rocket.py')
-rw-r--r--rocket.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/rocket.py b/rocket.py
index 962678b..de17812 100644
--- a/rocket.py
+++ b/rocket.py
@@ -7,6 +7,8 @@ class Rocket():
         self.stages_spent = 0
         self.payload_mass = payload_mass
 
+        self.heading_angle = 0 #TODO: TODOODODODODODODODODODOOD
+
     def current_stage(self) -> type[Stage]:
         return self.stages[0]