#932 Intersection box : Added xy step size and depth step size

This commit is contained in:
Magne Sjaastad
2016-10-25 13:12:43 +02:00
parent c09e22c1df
commit c418650546
2 changed files with 31 additions and 5 deletions

View File

@@ -63,8 +63,8 @@ public:
// Fields
caf::PdmField<QString> name;
caf::PdmField<bool> isActive;
caf::PdmField< bool > showInactiveCells;
caf::PdmField<bool> showInactiveCells;
cvf::Mat4d boxOrigin() const;
cvf::Vec3d boxSize() const;
SinglePlaneState singlePlaneState() const;
@@ -115,8 +115,13 @@ private:
caf::PdmField<double> m_maxYCoord;
caf::PdmField<double> m_maxDepth;
caf::PdmField<double> m_xySliderStepSize;
caf::PdmField<double> m_depthSliderStepSize;
caf::PdmField<bool> m_show3DManipulator;
cvf::ref<RivIntersectionBoxPartMgr> m_intersectionBoxPartMgr;
QPointer<RicBoxManipulatorEventHandler> m_boxManipulator;
};