diff --git a/Point_set_3/include/CGAL/Point_set_3.h b/Point_set_3/include/CGAL/Point_set_3.h index 8fe32fbdbfa..16cd9ddf3c8 100644 --- a/Point_set_3/include/CGAL/Point_set_3.h +++ b/Point_set_3/include/CGAL/Point_set_3.h @@ -231,6 +231,18 @@ public: return *this; } + /// \cond SKIP_IN_MANUAL + // copy constructor (same as assignment) + Point_set_3 (const Point_set_3& ps) + { + m_base = ps.m_base; + m_indices = this->property_map ("index").first; + m_points = this->property_map ("point").first; + m_normals = this->property_map ("normal").first; + m_nb_removed = ps.m_nb_removed; + } + /// \endcond + /// @} /// \cond SKIP_IN_MANUAL