summaryrefslogtreecommitdiff
path: root/src/GudhUI/model/Complex_typedefs.h
diff options
context:
space:
mode:
authorsalinasd <salinasd@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2015-01-27 10:20:13 +0000
committersalinasd <salinasd@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2015-01-27 10:20:13 +0000
commitf527cde6342c5b8109a20f0a6b483327c6569844 (patch)
tree1c0464b56b21ef7767f814b9a35a6e5c68aa7613 /src/GudhUI/model/Complex_typedefs.h
parentdf6c26bdcb28805e8949d08dad5acd012e91ecb8 (diff)
Merge GudhUI, a UI for gudhi based on Qt
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/trunk@427 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 17fedd974f14a8225b27d94361e835964eeb5cba
Diffstat (limited to 'src/GudhUI/model/Complex_typedefs.h')
-rw-r--r--src/GudhUI/model/Complex_typedefs.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/src/GudhUI/model/Complex_typedefs.h b/src/GudhUI/model/Complex_typedefs.h
new file mode 100644
index 00000000..b6404d62
--- /dev/null
+++ b/src/GudhUI/model/Complex_typedefs.h
@@ -0,0 +1,39 @@
+/*
+ * Complex_typedefs.h
+ *
+ * Created on: Aug 26, 2014
+ * Author: dsalinas
+ */
+
+#ifndef COMPLEX_TYPEDEFS_H_
+#define COMPLEX_TYPEDEFS_H_
+
+
+
+#include "gudhi/Skeleton_blocker/Skeleton_blocker_simple_geometric_traits.h"
+#include "gudhi/Skeleton_blocker_geometric_complex.h"
+
+#include <CGAL/Kernel_d/Point_d.h>
+
+#include <CGAL/Cartesian.h>
+#include <CGAL/Cartesian_d.h>
+
+
+struct Geometry_trait : public CGAL::Cartesian_d<double> {
+ typedef CGAL::Cartesian<double>::Point_3 Point_3;
+ typedef CGAL::Cartesian<double>::Vector_3 Vector_3;
+ typedef CGAL::Point_d<Cartesian_d<double>> Point;
+ typedef CGAL::Vector_d<Cartesian_d<double>> Vector;
+};
+
+typedef Geometry_trait::Point Point;
+
+
+using namespace Gudhi;
+using namespace Gudhi::skbl;
+
+typedef Skeleton_blocker_simple_geometric_traits<Geometry_trait> Complex_geometric_traits;
+typedef Skeleton_blocker_geometric_complex< Complex_geometric_traits > Complex;
+
+
+#endif /* COMPLEX_TYPEDEFS_H_ */