Files @ 67230a3743ca
Branch filter:

Location: EI/VirtualLeaf/src/hull.h

Michael Guravage
Removed erroneous qmake -makefile option. MACOSX, look for gpl3.txt in ../doc directory.

--
user: Michael Guravage <michael.guravage@cwi.nl>
branch 'default'
changed src/ChangeLog
changed src/Makefile
changed src/TutorialCode/Tutorial0/ChangeLog
changed src/TutorialCode/Tutorial0/Makefile
changed src/TutorialCode/Tutorial1A/ChangeLog
changed src/TutorialCode/Tutorial1A/Makefile
changed src/TutorialCode/Tutorial1B/ChangeLog
changed src/TutorialCode/Tutorial1B/Makefile
changed src/TutorialCode/Tutorial1C/ChangeLog
changed src/TutorialCode/Tutorial1C/Makefile
changed src/TutorialCode/Tutorial1D/ChangeLog
changed src/TutorialCode/Tutorial1D/Makefile
changed src/TutorialCode/Tutorial2/ChangeLog
changed src/TutorialCode/Tutorial2/Makefile
changed src/TutorialCode/Tutorial3/ChangeLog
changed src/TutorialCode/Tutorial3/Makefile
changed src/TutorialCode/Tutorial4/ChangeLog
changed src/TutorialCode/Tutorial4/Makefile
changed src/TutorialCode/Tutorial5/ChangeLog
changed src/TutorialCode/Tutorial5/Makefile
changed src/VirtualLeaf.pro
changed src/build_models/ChangeLog
changed src/build_models/Makefile
#ifndef _HULL_H_
#define _HULL_H_

// 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;


};

// required to sort points (e.g. Qt's qSort())
bool operator<(const Point & p1, const Point & p2);

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