diff options
| author | Jesper Jensen <jesper@jnsn.dev> | 2026-04-18 16:14:51 +0200 |
|---|---|---|
| committer | Jesper Jensen <jesper@jnsn.dev> | 2026-04-18 16:14:51 +0200 |
| commit | 2dbf9aed304c69431038d3b37e614e5d45dbcc56 (patch) | |
| tree | 4caf35d63499d0e80716b5b180fea15d218ddb58 /inc/cad/svg.h | |
| parent | 9688f8f0f685bb93e9d74e7d5e74eeb1939b94aa (diff) | |
Make the triangle work again
Diffstat (limited to 'inc/cad/svg.h')
| -rw-r--r-- | inc/cad/svg.h | 2 |
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); |
