TM2IN  0.5.1
compare.h
Go to the documentation of this file.
1 //
2 // Created by dongmin on 18. 7. 24.
3 //
4 
5 #ifndef TM2IN_COMPARE_H
6 #define TM2IN_COMPARE_H
7 
8 #include "detail/cgal_config.h"
9 #include "features/Vertex.h"
10 
11 class IndoorComponent;
12 namespace TM2IN {
13  namespace algorithm {
18  bool greater(Vertex * a, Vertex * b);
23  bool compareArea(IndoorComponent* i, IndoorComponent* j);
24  }
25 }
26 
27 #endif //TM2IN_COMPARE_H
Definition: collinear.cpp:10
bool greater(Vertex *a, Vertex *b)
Compares two Vertices.
Definition: compare.cpp:12
bool compareArea(IndoorComponent *i, IndoorComponent *j)
Compares two Indoor Component by calculating area.
Definition: compare.cpp:49