/* This file is part of the Gudhi Library. The Gudhi library * (Geometric Understanding in Higher Dimensions) is a generic C++ * library for computational topology. * * Author(s): David Salinas * * Copyright (C) 2014 Inria * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * */ #ifndef MODEL_COMPLEX_TYPEDEFS_H_ #define MODEL_COMPLEX_TYPEDEFS_H_ #include #include #include #include #include struct Geometry_trait : public CGAL::Cartesian_d { typedef CGAL::Cartesian::Point_3 Point_3; typedef CGAL::Cartesian::Vector_3 Vector_3; typedef CGAL::Point_d> Point; typedef CGAL::Vector_d> Vector; }; typedef Geometry_trait::Point Point; using namespace Gudhi; using namespace Gudhi::skeleton_blocker; typedef Skeleton_blocker_simple_geometric_traits Complex_geometric_traits; typedef Skeleton_blocker_geometric_complex< Complex_geometric_traits > Complex; #endif // MODEL_COMPLEX_TYPEDEFS_H_