11#ifndef MODEL_COMPLEX_TYPEDEFS_H_
12#define MODEL_COMPLEX_TYPEDEFS_H_
14#include <gudhi/Skeleton_blocker/Skeleton_blocker_simple_geometric_traits.h>
15#include <gudhi/Skeleton_blocker_geometric_complex.h>
17#include <CGAL/Kernel_d/Point_d.h>
18#include <CGAL/Cartesian.h>
19#include <CGAL/Cartesian_d.h>
21struct Geometry_trait :
public CGAL::Cartesian_d<double> {
22 typedef CGAL::Cartesian<double>::Point_3 Point_3;
23 typedef CGAL::Cartesian<double>::Vector_3 Vector_3;
24 typedef CGAL::Point_d<Cartesian_d<double>> Point;
25 typedef CGAL::Vector_d<Cartesian_d<double>> Vector;
28typedef Geometry_trait::Point Point;
31using namespace Gudhi::skeleton_blocker;
Class that represents a geometric complex that can be simplified. The class allows access to points o...
Definition: Skeleton_blocker_geometric_complex.h:29