mirror of https://github.com/CGAL/cgal
remove point type from insert-of-range-of-point of Reconstruction_triangulation_3
which is now only INPUT (someone using this internal function will get an error instead of an execution problem)
This commit is contained in:
parent
2240741b91
commit
634cd7da8a
|
|
@ -250,7 +250,6 @@ public:
|
|||
first,beyond,
|
||||
point_pmap,
|
||||
normal_pmap,
|
||||
Triangulation::INPUT,
|
||||
visitor);
|
||||
|
||||
// Prints status
|
||||
|
|
@ -279,7 +278,6 @@ public:
|
|||
m_tr->insert(
|
||||
first,beyond,
|
||||
normal_pmap,
|
||||
Triangulation::INPUT,
|
||||
visitor);
|
||||
|
||||
// Prints status
|
||||
|
|
|
|||
|
|
@ -375,7 +375,6 @@ public:
|
|||
InputIterator beyond, ///< past-the-end iterator over the input points.
|
||||
PointPMap point_pmap, ///< property map to access the position of an input point.
|
||||
NormalPMap normal_pmap, ///< property map to access the *oriented* normal of an input point.
|
||||
Point_type type, // = INPUT,
|
||||
Visitor visitor)
|
||||
{
|
||||
if(! points.empty()){
|
||||
|
|
@ -446,14 +445,12 @@ public:
|
|||
InputIterator first, ///< iterator over the first input point.
|
||||
InputIterator beyond, ///< past-the-end iterator over the input points.
|
||||
NormalPMap normal_pmap, ///< property map to access the *oriented* normal of an input point.
|
||||
Point_type type,// = INPUT,
|
||||
Visitor visitor)
|
||||
{
|
||||
return insert(
|
||||
first,beyond,
|
||||
make_dereference_property_map(first),
|
||||
normal_pmap,
|
||||
type,
|
||||
visitor);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue