Skip to content

Commit

Permalink
fixup! Well Target Candidates: make result grid cell count configurable.
Browse files Browse the repository at this point in the history
  • Loading branch information
kriben committed Dec 18, 2024
1 parent 0d4fbf6 commit f1f31ba
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ApplicationLibCode/ProjectDataModel/RimRegularGridCase.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ void RimRegularGridCase::setBoundingBox( const cvf::BoundingBox& boundingBox )
//--------------------------------------------------------------------------------------------------
void RimRegularGridCase::setCellCount( const cvf::Vec3st& cellCount )
{
m_cellCountI = cellCount.x();
m_cellCountJ = cellCount.y();
m_cellCountK = cellCount.z();
m_cellCountI = static_cast<int>( cellCount.x() );
m_cellCountJ = static_cast<int>( cellCount.y() );
m_cellCountK = static_cast<int>( cellCount.z() );
}

//--------------------------------------------------------------------------------------------------
Expand Down

0 comments on commit f1f31ba

Please sign in to comment.