Method rename

This commit is contained in:
Jacob Støren
2019-11-26 10:35:45 +01:00
parent 5593fb198c
commit bf8ed71641
4 changed files with 25 additions and 25 deletions

View File

@@ -84,7 +84,7 @@ void RivIntersectionBoxPartMgr::applySingleColorEffect()
//-------------------------------------------------------------------------------------------------- //--------------------------------------------------------------------------------------------------
void RivIntersectionBoxPartMgr::updateCellResultColor( size_t timeStepIndex ) void RivIntersectionBoxPartMgr::updateCellResultColor( size_t timeStepIndex )
{ {
RivIntersectionResultsColoringTools::updateCellResultColorStatic( timeStepIndex, RivIntersectionResultsColoringTools::calculateIntersectionResultColors( timeStepIndex,
true, true,
m_rimIntersectionBox, m_rimIntersectionBox,
m_intersectionBoxGenerator.p(), m_intersectionBoxGenerator.p(),

View File

@@ -153,7 +153,7 @@ void RivIntersectionPartMgr::updateCellResultColor( size_t
const cvf::ScalarMapper* explicitScalarColorMapper, const cvf::ScalarMapper* explicitScalarColorMapper,
const RivTernaryScalarMapper* explicitTernaryColorMapper ) const RivTernaryScalarMapper* explicitTernaryColorMapper )
{ {
RivIntersectionResultsColoringTools::updateCellResultColorStatic( timeStepIndex, RivIntersectionResultsColoringTools::calculateIntersectionResultColors( timeStepIndex,
!m_isFlattened, !m_isFlattened,
m_rimCrossSection, m_rimCrossSection,
m_crossSectionGenerator.p(), m_crossSectionGenerator.p(),

View File

@@ -48,7 +48,7 @@
//-------------------------------------------------------------------------------------------------- //--------------------------------------------------------------------------------------------------
/// ///
//-------------------------------------------------------------------------------------------------- //--------------------------------------------------------------------------------------------------
void RivIntersectionResultsColoringTools::updateCellResultColorStatic( void RivIntersectionResultsColoringTools::calculateIntersectionResultColors(
size_t timeStepIndex, size_t timeStepIndex,
bool useSeparateIntersectionResDefTimeStep, bool useSeparateIntersectionResDefTimeStep,
RimIntersectionHandle* rimIntersectionHandle, RimIntersectionHandle* rimIntersectionHandle,

View File

@@ -43,7 +43,7 @@ class ScalarMapper;
class RivIntersectionResultsColoringTools class RivIntersectionResultsColoringTools
{ {
public: public:
static void updateCellResultColorStatic( size_t timeStepIndex, static void calculateIntersectionResultColors( size_t timeStepIndex,
bool useSeparateIntersectionResDefTimeStep, bool useSeparateIntersectionResDefTimeStep,
RimIntersectionHandle* rimIntersectionHandle, RimIntersectionHandle* rimIntersectionHandle,
const RivIntersectionGeometryGeneratorIF* intersectionGeomGenIF, const RivIntersectionGeometryGeneratorIF* intersectionGeomGenIF,