Refactor: Update usage of caf::VecIjk.

This commit is contained in:
Kristian Bendiksen
2025-11-14 14:44:21 +01:00
parent 3b81080086
commit 38c691d9a4
31 changed files with 132 additions and 152 deletions
@@ -401,7 +401,7 @@ class CellRangeBB
public:
CellRangeBB()
: m_min( cvf::UNDEFINED_SIZE_T, cvf::UNDEFINED_SIZE_T, cvf::UNDEFINED_SIZE_T )
, m_max( cvf::Vec3st::ZERO )
, m_max( 0, 0, 0 )
{
}
@@ -417,8 +417,8 @@ public:
}
public:
cvf::Vec3st m_min;
cvf::Vec3st m_max;
caf::VecIjk0 m_min;
caf::VecIjk0 m_max;
};
//--------------------------------------------------------------------------------------------------