From aa1b6fe12b47ca34a2f6a9cf33b8d35b17eeabe9 Mon Sep 17 00:00:00 2001 From: John Lewin Date: Sat, 18 May 2019 09:11:22 -0700 Subject: [PATCH] Reorder members --- .../PartPreviewWindow/View3D/InteractionVolume.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/MatterControlLib/PartPreviewWindow/View3D/InteractionVolume.cs b/MatterControlLib/PartPreviewWindow/View3D/InteractionVolume.cs index ba76e4ba3..86f8289cd 100644 --- a/MatterControlLib/PartPreviewWindow/View3D/InteractionVolume.cs +++ b/MatterControlLib/PartPreviewWindow/View3D/InteractionVolume.cs @@ -51,14 +51,10 @@ namespace MatterHackers.MeshVisualizer public class InteractionVolume { - protected bool MouseDownOnControl { get; set; } + private bool mouseOver = false; public Matrix4X4 TotalTransform = Matrix4X4.Identity; - public string Name { get; set; } - - private bool mouseOver = false; - public InteractionVolume(IInteractionVolumeContext meshViewerToDrawWith) { this.InteractionContext = meshViewerToDrawWith; @@ -68,6 +64,8 @@ namespace MatterHackers.MeshVisualizer public bool DrawOnTop { get; protected set; } + protected bool MouseDownOnControl { get; set; } + public IntersectInfo MouseMoveInfo { get; set; } public bool MouseOver @@ -83,6 +81,8 @@ namespace MatterHackers.MeshVisualizer } } + public string Name { get; set; } + protected IInteractionVolumeContext InteractionContext { get; } public IObject3D RootSelection