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:
Sébastien Loriot 2012-11-08 10:04:35 +00:00
parent 2240741b91
commit 634cd7da8a
2 changed files with 0 additions and 5 deletions

View File

@ -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

View File

@ -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);
}