and line segment edges are drawn as cylinders. In this case, handle
arrowheads as cones correctly.
Needed to expose the wind function from pathplan.
extern "C" {
#endif
+#ifndef NOT
#define NOT(x) (!(x))
+#endif
#ifndef FALSE
#define FALSE 0
#define TRUE (NOT(FALSE))
typedef double COORD;
extern COORD area2(Ppoint_t, Ppoint_t, Ppoint_t);
+ extern int wind(Ppoint_t a, Ppoint_t b, Ppoint_t c);
extern COORD dist2(Ppoint_t, Ppoint_t);
extern int intersect(Ppoint_t a, Ppoint_t b, Ppoint_t c, Ppoint_t d);
* Returns 1, 0, -1 if the points abc are counterclockwise,
* collinear, or clockwise.
*/
-static int wind(Ppoint_t a, Ppoint_t b, Ppoint_t c)
+int wind(Ppoint_t a, Ppoint_t b, Ppoint_t c)
{
COORD w;