#815 : Intersection Box : Added PartManager and SourceInfo

This commit is contained in:
Magne Sjaastad
2016-09-21 14:40:50 +02:00
parent 33296e4424
commit e789694780
10 changed files with 655 additions and 4 deletions

View File

@@ -23,6 +23,7 @@
#include "cvfBoundingBox.h"
class RivIntersectionBoxPartMgr;
//==================================================================================================
//
@@ -44,6 +45,9 @@ public:
cvf::Mat4d boxOrigin() const;
cvf::Vec3d boxSize() const;
RivIntersectionBoxPartMgr* intersectionBoxPartMgr();
void setModelBoundingBox(cvf::BoundingBox& boundingBox);
protected:
@@ -67,5 +71,7 @@ private:
caf::PdmField<double> maxZCoord;
cvf::BoundingBox m_boundingBox;
cvf::BoundingBox m_boundingBox;
cvf::ref<RivIntersectionBoxPartMgr> m_intersectionBoxPartMgr;
};