Reorder members

This commit is contained in:
John Lewin 2019-05-18 09:11:22 -07:00 committed by jlewin
parent 694d28e285
commit aa1b6fe12b

View file

@ -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