]> granicus.if.org Git - graphviz/commitdiff
Add addPt to geom.h interface; fix conflicting names in neatogen
authorerg <devnull@localhost>
Wed, 18 Jun 2008 19:28:39 +0000 (19:28 +0000)
committererg <devnull@localhost>
Wed, 18 Jun 2008 19:28:39 +0000 (19:28 +0000)
lib/neatogen/geometry.c
lib/neatogen/geometry.h

index 19ce6c14ca09f8bf1200067a6fa9b97dd2e30d0b..585e1fadc786b54eeb69dcd5dbf2647a9db85c01 100644 (file)
@@ -51,7 +51,7 @@ void subpt(Point * a, Point b, Point c)
     a->y = b.y - c.y;
 }
 
-void addPt(Point * c, Point a, Point b)
+void addpt(Point * c, Point a, Point b)
 {
     c->x = a.x + b.x;
     c->y = a.y + b.y;
index 345ed017ca75bd83972a790f86fb99ebc5150715..02df9fd75fdc016aa5a3627a0023c5d56a98e1d4 100644 (file)
@@ -42,7 +42,7 @@ extern "C" {
     extern void geominit(void);
     extern double dist_2(Point *, Point *);    /* Distance squared between two points */
     extern void subpt(Point * a, Point b, Point c);
-    extern void addPt(Point * a, Point b, Point c);
+    extern void addpt(Point * a, Point b, Point c);
     extern double area_2(Point a, Point b, Point c);
     extern int leftOf(Point a, Point b, Point c);
     extern int intersection(Point a, Point b, Point c, Point d, Point * p);