mirror of https://github.com/CGAL/cgal
Fix exemple
This commit is contained in:
parent
ea47806461
commit
d019010144
|
|
@ -12,6 +12,8 @@
|
|||
|
||||
// Stop-condition policy
|
||||
#include <CGAL/Surface_mesh_simplification/Policies/Edge_collapse/Count_ratio_stop_predicate.h>
|
||||
#include <CGAL/Surface_mesh_simplification/Policies/Edge_collapse/Edge_length_cost.h>
|
||||
#include <CGAL/Surface_mesh_simplification/Policies/Edge_collapse/Midpoint_placement.h>
|
||||
|
||||
typedef CGAL::Simple_cartesian<double> Kernel;
|
||||
typedef Kernel::Point_3 Point_3;
|
||||
|
|
|
|||
|
|
@ -90,7 +90,7 @@ void LindstromTurkCore<ECM,K>::Extract_triangle_data()
|
|||
for ( const_triangle_iterator it = mProfile.triangles().begin(), eit = mProfile.triangles().end() ; it != eit ; ++ it )
|
||||
{
|
||||
Triangle const& tri = *it ;
|
||||
|
||||
|
||||
Point const& p0 = get_point(tri.v0);
|
||||
Point const& p1 = get_point(tri.v1);
|
||||
Point const& p2 = get_point(tri.v2);
|
||||
|
|
|
|||
Loading…
Reference in New Issue