mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Fix intersection depth filter limit calculations
This commit is contained in:
committed by
Magne Sjaastad
parent
3c835f7eb2
commit
530329aed6
@@ -237,7 +237,7 @@ void RivExtrudedCurveIntersectionPartMgr::generatePartGeometry()
|
||||
if ( m_intersectionGenerator.isNull() ) return;
|
||||
|
||||
if ( m_rimIntersection->depthFilterType() == RimIntersectionFilterEnum::INTERSECT_FILTER_BETWEEN &&
|
||||
( m_rimIntersection->lowerFilterDepth( 1.0 ) <= m_rimIntersection->upperFilterDepth( 1.0 ) ) )
|
||||
( m_rimIntersection->lowerFilterDepth( 1.0 ) >= m_rimIntersection->upperFilterDepth( 1.0 ) ) )
|
||||
return;
|
||||
|
||||
bool useBufferObjects = true;
|
||||
|
||||
Reference in New Issue
Block a user