Added overload of the 'clear' function

This commit is contained in:
Andreas Fabri 2007-01-17 16:34:54 +00:00
parent c177dd211d
commit f0885f2191
1 changed files with 7 additions and 0 deletions

View File

@ -199,6 +199,13 @@ class Triangulation_from_slices_3 : public Triangulation_3<Gt,Tds>
CGAL_triangulation_postcondition( is_valid() );
}
void clear()
{
Tr_Base::clear();
slices.clear();
}
template <class Parser>
void load(const char* slc_file_name);
//Precondition : the triangulation must contain no points */