aboutsummaryrefslogtreecommitdiff
path: root/physics.c
diff options
context:
space:
mode:
authorrodri <rgl@antares-labs.eu>2023-01-31 23:46:58 +0000
committerrodri <rgl@antares-labs.eu>2023-01-31 23:46:58 +0000
commit06f817044e7b2ec0bf63ed37a1cadd9f3818a787 (patch)
treee3f677987e50eaffddfd7c29745ceb090d1c991f /physics.c
parent1ee28cd5ece6c035af2ab445ec774d7e0cc054ec (diff)
downloadmusw-06f817044e7b2ec0bf63ed37a1cadd9f3818a787.tar.gz
musw-06f817044e7b2ec0bf63ed37a1cadd9f3818a787.tar.bz2
musw-06f817044e7b2ec0bf63ed37a1cadd9f3818a787.zip
use libgeometry from the system. got rid of global `theparty`. wrote a little man page draft.
Diffstat (limited to 'physics.c')
-rw-r--r--physics.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/physics.c b/physics.c
index f7fd284..0fafea4 100644
--- a/physics.c
+++ b/physics.c
@@ -2,7 +2,7 @@
#include <libc.h>
#include <ip.h>
#include <draw.h>
-#include "libgeometry/geometry.h"
+#include <geometry.h>
#include "dat.h"
#include "fns.h"
@@ -17,7 +17,7 @@ accelship(Universe *u, Particle *p, double)
{
double g, d;
- /* XXX: remember to take thrust into account, based on user input. */
+ /* 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);