69 float deadZonePixelRadius_{ 20.0f };
85 MRVIEWER_API
virtual void setCenterPoint_(
const std::vector<std::shared_ptr<Object>>& objects, Vector3f& centerPoint )
const;
89 MRVIEWER_API Box3f
getBbox_(
const std::vector<std::shared_ptr<Object>>& objects )
const;
103 MRVIEWER_API
virtual void onPick_(
104 TransformMode mode,
const std::vector<std::shared_ptr<Object>>& objects,
105 const Vector3f& centerPoint,
const Vector3f& startPoint );
109 void applyCurrentXf_(
bool history );
112 void setVisualizeVectors_( std::vector<Vector3f> worldPoints );
114 std::vector<std::shared_ptr<Object>> objects_;
115 std::vector<AffineXf3f> initialXfs_;
118 Vector2i screenStartPoint_;
119 MouseButton currentButton_ = MouseButton::NoButton;
122 Vector3f worldStartPoint_;
123 Vector3f xfCenterPoint_;
124 float viewportStartPointZ_;
125 Plane3f referencePlane_;
131 bool historyEnabled_{
true };
133 std::vector<ImVec2> visualizeVectors_;
Definition MRMoveObjectByMouseImpl.h:16
virtual MRVIEWER_API void setCenterPoint_(const std::vector< std::shared_ptr< Object > > &objects, Vector3f ¢erPoint) const
centerPoint - a point that will be used as center of rotation/scaling in world space
virtual MRVIEWER_API TransformMode modeFromPickModifiers_(int modifiers) const
Helper function to determine TransformMode based on modifiers.
virtual ~MoveObjectByMouseImpl()=default
MRVIEWER_API Box3f getBbox_(const std::vector< std::shared_ptr< Object > > &objects) const
MRVIEWER_API void onDrawDialog(float menuScaling) const
MoveObjectByMouseImpl()=default
MRVIEWER_API bool onMouseMove(int x, int y)
MRVIEWER_API bool onMouseUp(MouseButton button, int modifiers)
virtual MRVIEWER_API ObjAndPick pickObjects_(std::vector< std::shared_ptr< Object > > &objects, int modifiers) const
TransformMode
Transformation mode.
Definition MRMoveObjectByMouseImpl.h:59
MRVIEWER_API bool onMouseDown(MouseButton button, int modifiers)
MRVIEWER_API bool isMoving() const
void enableHistory(bool history)
enables or disables adding history to viewer history store by this tool
Definition MRMoveObjectByMouseImpl.h:51
virtual MRVIEWER_API TransformMode modeFromPick_(MouseButton button, int modifiers) const
this function is called from onMouseDown to verify if pick should proceed, if None is returned - onMo...
int minDistance() const
Definition MRMoveObjectByMouseImpl.h:24
void setMinDistance(int minDistance)
Definition MRMoveObjectByMouseImpl.h:25
MRVIEWER_API void cancel()
virtual MRVIEWER_API void setStartPoint_(const ObjAndPick &pick, Vector3f &startPoint) const
startPoint - a point under cursor for transform calculation, can be the picked point or else (world c...
AffineXf3f currentXf_
Definition MRMoveObjectByMouseImpl.h:91
bool isHistoryEnabled() const
returns true if appending history to viewer history store is enabled in this tool
Definition MRMoveObjectByMouseImpl.h:54
@ None
special value not to limit path in one slice
Definition MRVoxelPath.h:33
MouseButton
Definition MRMouse.h:9
std::pair< std::shared_ptr< MR::VisualObject >, MR::PointOnObject > ObjAndPick
Definition MRViewerFwd.h:69