#3636 Temporary LGR : Always rebuild geometry of intersections

This commit is contained in:
Magne Sjaastad
2018-11-06 10:09:30 +01:00
parent 59c1f612fb
commit f2b8f8487c
7 changed files with 37 additions and 0 deletions

View File

@@ -151,6 +151,22 @@ void RimIntersectionCollection::appendPartsToModel(Rim3dView& view, cvf::ModelBa
}
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
void RimIntersectionCollection::rebuildGeometry()
{
for (RimIntersection* intersection : m_intersections)
{
intersection->rebuildGeometry();
}
for (RimIntersectionBox* intersectionBox : m_intersectionBoxes)
{
intersectionBox->rebuildGeometry();
}
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------