(#884) Added prototype of event handler for interaction with box

This commit is contained in:
Magne Sjaastad
2016-09-27 11:59:06 +02:00
parent fa6a6b4f08
commit d4bdbcb7c8
19 changed files with 1387 additions and 5 deletions

View File

@@ -40,3 +40,11 @@ const std::vector<size_t>& RivIntersectionBoxSourceInfo::triangleToCellIndex() c
return m_intersectionBoxGeometryGenerator->triangleToCellIndex();
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
const RimIntersectionBox* RivIntersectionBoxSourceInfo::intersectionBox() const
{
return m_intersectionBoxGeometryGenerator->intersectionBox();
}

View File

@@ -32,6 +32,8 @@ public:
const std::vector<size_t>& triangleToCellIndex() const;
const RimIntersectionBox* intersectionBox() const;
private:
cvf::cref<RivIntersectionBoxGeometryGenerator> m_intersectionBoxGeometryGenerator;
};