Do not clear pos buffer of clipping plane.

This commit is contained in:
Guillaume Damiand 2021-06-29 15:49:05 +02:00
parent 01f670e61e
commit 1ab891ee35
1 changed files with 4 additions and 1 deletions

View File

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