#1585 Remove RigFracture. No caching of transformed triangles related to each fracture instance

This commit is contained in:
Jacob Støren
2017-06-12 12:45:09 +02:00
parent b9c6f5cc9e
commit a2de4efb66
13 changed files with 41 additions and 223 deletions

View File

@@ -124,14 +124,14 @@ void RimFractureTemplate::fieldChangedByUi(const caf::PdmFieldHandle* changedFie
if (changedField == &azimuthAngle && (abs(oldValue.toDouble() - fracture->azimuth()) < 1e-5))
{
fracture->updateAzimuthFromFractureTemplate();
fracture->setRecomputeGeometryFlag();
fracture->clearDisplayGeometryCache();
}
if (changedField == &orientationType)
{
fracture->updateAzimuthFromFractureTemplate();
fracture->setRecomputeGeometryFlag();
fracture->clearDisplayGeometryCache();
}
}
}