about summary refs log tree commit diff
path: root/rocket.py
diff options
context:
space:
mode:
authorBaitinq <you@example.com>2022-02-09 19:46:22 +0000
committerBaitinq <you@example.com>2022-02-09 19:46:22 +0000
commitb1e21900e24d88e13e9a0e416e737f6f101583fa (patch)
tree3f31baccd1234a31fc141ff1ea761a393373a804 /rocket.py
parentImplemented basic version of x movement (diff)
downloadOSLS-b1e21900e24d88e13e9a0e416e737f6f101583fa.tar.gz
OSLS-b1e21900e24d88e13e9a0e416e737f6f101583fa.tar.bz2
OSLS-b1e21900e24d88e13e9a0e416e737f6f101583fa.zip
Add heading component to the x movement
Diffstat (limited to 'rocket.py')
-rw-r--r--rocket.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/rocket.py b/rocket.py
index de17812..962678b 100644
--- a/rocket.py
+++ b/rocket.py
@@ -7,8 +7,6 @@ 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]