Files @ fc4e80bf722d
Branch filter:

Location: EI/VirtualLeaf/src/hull.h - annotation

Michael Guravage
Pre-push breakpoint.

--
user: Michael Guravage <michael.guravage@cwi.nl>
branch 'default'
changed doc/v1.html
changed doc/v1.pdf
changed doc/v1.rst
// 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 );