From 36dfa1b872505ff9238d8ddefd7d80b78c174a68 Mon Sep 17 00:00:00 2001 From: Zwarf Date: Sun, 23 Aug 2020 18:28:32 +0200 Subject: [PATCH] Add TODO --- src/plot.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/plot.c b/src/plot.c index bccee3a..4a1a4b7 100644 --- a/src/plot.c +++ b/src/plot.c @@ -1,5 +1,9 @@ #include +/*TODO + * Plot Circle + */ + double plot_calc_coordinate_x (double a1, double a2, float alpha, float beta) { /* coordinate transformation to transform 3D coordinates into 2D coordinates */ double x = (sin(beta)*a1-sin(alpha)*a2)/(cos(alpha)*sin(beta)-sin(alpha)*cos(beta));