Files @ 4cb24b737683
Branch filter:

Location: EI/VirtualLeaf/src/hull.h

Roeland Merks
merge? I tried to push my recent updates, hoping I haven't messed up things. All intermediate versions are kept anyway, right?
// Class point needed by 2D convex hull code
class Point {

public:
  Point(float xx, float yy) {
    x=xx;
    y=yy;
  }
  Point(void) {
    x=0; y=0;
  }
  float x,y;

};

int chainHull_2D( Point* P, int n, Point* H );