summaryrefslogtreecommitdiff
path: root/src/GudhUI/model/Complex_typedefs.h
blob: b6404d6276b5d51e295790c3a3029dd334d863dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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_ */