From 8975899ac8a3589d0d42f96dc4b7aa6ced8ee720 Mon Sep 17 00:00:00 2001 From: rodri Date: Sat, 25 Feb 2023 10:21:02 +0000 Subject: implemented optional ghosting for the clients. --- physics.c | 1 - 1 file changed, 1 deletion(-) (limited to 'physics.c') 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); -- cgit v1.2.3