MEPP2 Project
DataStructures_cgal_polyhedron_3.h
Go to the documentation of this file.
1 // Copyright (c) 2012-2019 University of Lyon and CNRS (France).
2 // All rights reserved.
3 //
4 // This file is part of MEPP2; you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published
6 // by the Free Software Foundation; either version 3 of the License,
7 // or (at your option) any later version.
8 //
9 // This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
10 // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
11 #pragma once
12 
13 
14 #if defined _MSC_VER
15 #pragma warning(push)
16 #pragma warning(disable : 4244) // for VS-2015
17 #pragma warning(disable : 4267) // for VS-2015 // MANDATORY when PCL is ON !!!
18 #endif
19 
20 
21 #include <CGAL/version_macros.h>
22 
23 #include <CGAL/Cartesian.h>
24 #include <CGAL/Polyhedron_3.h>
25 #include <CGAL/Polyhedron_items_with_id_3.h>
26 #include <CGAL/IO/Polyhedron_iostream.h>
27 #include <CGAL/boost/graph/graph_traits_Polyhedron_3.h>
28 
29 namespace FEVV {
30 
31 using CGALKernel = CGAL::Cartesian< double >;
33  CGAL::Polyhedron_3< CGALKernel, CGAL::Polyhedron_items_with_id_3 >;
34 
35 } // namespace FEVV
36 
37 
38 #if defined _MSC_VER
39 #pragma warning(pop)
40 #endif
FEVV
Interfaces for plugins These interfaces will be used for different plugins.
Definition: Assert.h:16
CGALKernel
CGAL::Cartesian< double > CGALKernel
Definition: boolops_enriched_polyhedron.hpp:100
FEVV::MeshPolyhedron
CGAL::Polyhedron_3< CGALKernel, CGAL::Polyhedron_items_with_id_3 > MeshPolyhedron
Definition: DataStructures_cgal_polyhedron_3.h:33