mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#818 Update visibility of fields for slice intersection boxes
This commit is contained in:
parent
5c4b92f9b8
commit
d87aa6a466
@ -126,6 +126,8 @@ void RimIntersectionBox::setXSlice(double xValue)
|
|||||||
singlePlaneState = PLANE_STATE_X;
|
singlePlaneState = PLANE_STATE_X;
|
||||||
minXCoord = xValue;
|
minXCoord = xValue;
|
||||||
maxXCoord = xValue;
|
maxXCoord = xValue;
|
||||||
|
|
||||||
|
updateVisibility();
|
||||||
}
|
}
|
||||||
|
|
||||||
//--------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------
|
||||||
@ -136,6 +138,8 @@ void RimIntersectionBox::setYSlice(double yValue)
|
|||||||
singlePlaneState = PLANE_STATE_Y;
|
singlePlaneState = PLANE_STATE_Y;
|
||||||
minYCoord = yValue;
|
minYCoord = yValue;
|
||||||
maxYCoord = yValue;
|
maxYCoord = yValue;
|
||||||
|
|
||||||
|
updateVisibility();
|
||||||
}
|
}
|
||||||
|
|
||||||
//--------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------
|
||||||
@ -146,6 +150,8 @@ void RimIntersectionBox::setZSlice(double zValue)
|
|||||||
singlePlaneState = PLANE_STATE_Z;
|
singlePlaneState = PLANE_STATE_Z;
|
||||||
minZCoord = zValue;
|
minZCoord = zValue;
|
||||||
maxZCoord = zValue;
|
maxZCoord = zValue;
|
||||||
|
|
||||||
|
updateVisibility();
|
||||||
}
|
}
|
||||||
|
|
||||||
//--------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
Loading…
Reference in New Issue
Block a user