aboutsummaryrefslogtreecommitdiff
path: root/physics.c
diff options
context:
space:
mode:
Diffstat (limited to 'physics.c')
-rw-r--r--physics.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/physics.c b/physics.c
index b588a4d..1eb528a 100644
--- a/physics.c
+++ b/physics.c
@@ -19,7 +19,6 @@ accelship(Universe *u, Particle *p, double)
{
double g, d;
- /* TODO: take thrust into account, based on user input. */
d = vec2len(subpt2(u->star.p, p->p));
d *= 1e5; /* scale to the 100km/px range */
g = G*u->star.mass/(d*d);