summaryrefslogtreecommitdiff
path: root/comp.c
diff options
context:
space:
mode:
Diffstat (limited to 'comp.c')
-rw-r--r--comp.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/comp.c b/comp.c
index 7b2c575..8304f20 100644
--- a/comp.c
+++ b/comp.c
@@ -94,7 +94,8 @@ void comp_visit(struct leg *l)
struct pcoords dc = throw_dart(tc);
struct segment ds = get_segment(dc);
- v->ccoords[v->n_darts] = pol_to_cart(dc); // FIXME double conversion
+ // FIXME double conversion
+ v->ccoords[v->n_darts] = pol_to_cart(dc);
v->darts[v->n_darts++] = ds;
v->points += segment_points(ds);