summaryrefslogtreecommitdiff
path: root/geometry.h
diff options
context:
space:
mode:
authorerdgeist <erdgeist@bauklotz.fritz.box>2017-04-09 22:08:28 +0200
committererdgeist <erdgeist@bauklotz.fritz.box>2017-04-09 22:08:28 +0200
commit804f3bce8ad4dfd48186f0030252067f69b62e07 (patch)
treef70b7e33a3c3f34f615893b2e3d04feb51cbdc97 /geometry.h
parent0ab1e4878f9e2b592032dc7c67ae8018293058f6 (diff)
Add function to find a point for a certain offset
Diffstat (limited to 'geometry.h')
-rw-r--r--geometry.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/geometry.h b/geometry.h
index 509ec7e..049fba4 100644
--- a/geometry.h
+++ b/geometry.h
@@ -15,4 +15,4 @@ typedef struct {
15// range 0..65536 (but can extend, if normale hits line outside line segment) 15// range 0..65536 (but can extend, if normale hits line outside line segment)
16int dist_pl(LPoint const * p, LLine const * l, int * offs); 16int dist_pl(LPoint const * p, LLine const * l, int * offs);
17int dist_pp(LPoint const * p0, LPoint const * p1); 17int dist_pp(LPoint const * p0, LPoint const * p1);
18 18int get_x_for_y(LPoint const * p0, LPoint const * p1, int y);