mirror of https://github.com/CGAL/cgal
remove useless include and reorder typedefs
This commit is contained in:
parent
d43302295d
commit
1cf083d91a
|
|
@ -7,17 +7,17 @@
|
|||
|
||||
#include <CGAL/Polygon_mesh_slicer.h>
|
||||
|
||||
#include <boost/foreach.hpp>
|
||||
#include <fstream>
|
||||
|
||||
typedef CGAL::Exact_predicates_inexact_constructions_kernel K;
|
||||
typedef CGAL::Surface_mesh<K::Point_3> Mesh;
|
||||
|
||||
typedef std::vector<K::Point_3> Polyline;
|
||||
typedef std::list< Polyline > Polylines;
|
||||
|
||||
typedef CGAL::AABB_halfedge_graph_segment_primitive<Mesh> HGSP;
|
||||
typedef CGAL::AABB_traits<K, HGSP> AABB_traits;
|
||||
typedef CGAL::AABB_tree<AABB_traits> AABB_tree;
|
||||
typedef std::vector<K::Point_3> Polyline;
|
||||
typedef std::list< Polyline > Polylines;
|
||||
|
||||
int main()
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue