summaryrefslogtreecommitdiff
path: root/inc/cad
diff options
context:
space:
mode:
Diffstat (limited to 'inc/cad')
-rw-r--r--inc/cad/svg.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/inc/cad/svg.h b/inc/cad/svg.h
index e44cf3a..5bfce83 100644
--- a/inc/cad/svg.h
+++ b/inc/cad/svg.h
@@ -21,6 +21,8 @@ struct canvas {
FILE *f;
};
+void line_distance_to_point(struct line l, double d, struct point *p);
+
void plot_line_between(struct canvas *canvas, struct point p1, struct point p2);
void plot_arc_between_style(struct canvas *canvas, struct point c, struct point p1, struct point p2, enum LineStyle style);
void plot_arc_between(struct canvas *canvas, struct point c, struct point p1, struct point p2);