mirror of https://github.com/CGAL/cgal
Do not clear pos buffer of clipping plane.
This commit is contained in:
parent
01f670e61e
commit
1ab891ee35
|
|
@ -245,7 +245,10 @@ public:
|
|||
void clear()
|
||||
{
|
||||
for (unsigned int i=0; i<LAST_INDEX; ++i)
|
||||
{ arrays[i].clear(); }
|
||||
{
|
||||
if (i!=POS_CLIPPING_PLANE)
|
||||
{ arrays[i].clear(); }
|
||||
}
|
||||
|
||||
m_bounding_box=CGAL::Bbox_3();
|
||||
m_texts.clear();
|
||||
|
|
|
|||
Loading…
Reference in New Issue