Add optional IJK to ResultPoint for easier debugging

This commit is contained in:
Magne Sjaastad
2023-11-13 10:21:20 +01:00
parent 9e65eb3be9
commit 0f56eaed6b
4 changed files with 47 additions and 10 deletions

View File

@@ -301,3 +301,19 @@ cvf::Vec3d RigWellResultPoint::bottomPosition() const
{
return m_bottomPosition;
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
std::optional<caf::VecIjk> RigWellResultPoint::cellIjk() const
{
return m_cellIjk;
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
void RigWellResultPoint::setIjk( caf::VecIjk cellIJK )
{
m_cellIjk = cellIJK;
}