diff options
author | Baitinq <you@example.com> | 2022-02-09 19:46:22 +0000 |
---|---|---|
committer | Baitinq <you@example.com> | 2022-02-09 19:46:22 +0000 |
commit | b1e21900e24d88e13e9a0e416e737f6f101583fa (patch) | |
tree | 3f31baccd1234a31fc141ff1ea761a393373a804 /rocket.py | |
parent | Implemented basic version of x movement (diff) | |
download | OSLS-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.py | 2 |
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] |