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,
|
first,beyond,
|
||||||
point_pmap,
|
point_pmap,
|
||||||
normal_pmap,
|
normal_pmap,
|
||||||
Triangulation::INPUT,
|
|
||||||
visitor);
|
visitor);
|
||||||
|
|
||||||
// Prints status
|
// Prints status
|
||||||
|
|
@ -279,7 +278,6 @@ public:
|
||||||
m_tr->insert(
|
m_tr->insert(
|
||||||
first,beyond,
|
first,beyond,
|
||||||
normal_pmap,
|
normal_pmap,
|
||||||
Triangulation::INPUT,
|
|
||||||
visitor);
|
visitor);
|
||||||
|
|
||||||
// Prints status
|
// Prints status
|
||||||
|
|
|
||||||
|
|
@ -375,7 +375,6 @@ public:
|
||||||
InputIterator beyond, ///< past-the-end iterator over the input points.
|
InputIterator beyond, ///< past-the-end iterator over the input points.
|
||||||
PointPMap point_pmap, ///< property map to access the position of an input point.
|
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.
|
NormalPMap normal_pmap, ///< property map to access the *oriented* normal of an input point.
|
||||||
Point_type type, // = INPUT,
|
|
||||||
Visitor visitor)
|
Visitor visitor)
|
||||||
{
|
{
|
||||||
if(! points.empty()){
|
if(! points.empty()){
|
||||||
|
|
@ -446,14 +445,12 @@ public:
|
||||||
InputIterator first, ///< iterator over the first input point.
|
InputIterator first, ///< iterator over the first input point.
|
||||||
InputIterator beyond, ///< past-the-end iterator over the input points.
|
InputIterator beyond, ///< past-the-end iterator over the input points.
|
||||||
NormalPMap normal_pmap, ///< property map to access the *oriented* normal of an input point.
|
NormalPMap normal_pmap, ///< property map to access the *oriented* normal of an input point.
|
||||||
Point_type type,// = INPUT,
|
|
||||||
Visitor visitor)
|
Visitor visitor)
|
||||||
{
|
{
|
||||||
return insert(
|
return insert(
|
||||||
first,beyond,
|
first,beyond,
|
||||||
make_dereference_property_map(first),
|
make_dereference_property_map(first),
|
||||||
normal_pmap,
|
normal_pmap,
|
||||||
type,
|
|
||||||
visitor);
|
visitor);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue