Files @ b3943d0b8126
Branch filter:

Location: EI/VirtualLeaf/src/hull.h

Michael Guravage
Added a Q3FileDialog in canvas.cpp:Main::exportCellData() inquire
where to write the exportCellData.

--
user: Michael Guravage <michael.guravage@cwi.nl>
branch 'default'
added doc/Makefile
added doc/stylesheet.json
added doc/v1.html
added doc/v1.pdf
added doc/v1.rst
added src/leaficon.png
changed src/ChangeLog
changed src/canvas.cpp
// 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 );