Use resolution enum in contourmaps (#12113)

* Use resolution enum in contourmaps
This commit is contained in:
jonjenssen
2025-01-31 14:43:34 +01:00
committed by GitHub
parent 19a2c8b63d
commit 08c207e556
7 changed files with 17 additions and 59 deletions

View File

@@ -146,7 +146,7 @@ double RimGeoMechContourMapProjection::sampleSpacing() const
RimGeoMechCase* geoMechCase = this->geoMechCase();
if ( geoMechCase )
{
return m_relativeSampleSpacing * geoMechCase->characteristicCellSize();
return sampleSpacingFactor() * geoMechCase->characteristicCellSize();
}
return 0.0;
}