Allow moving all freehand points while creating it using ctrl

This commit is contained in:
Jaex 2016-08-05 11:43:52 +03:00
parent d33b19e3c7
commit 7ac883e8b9
2 changed files with 22 additions and 15 deletions

View file

@ -136,7 +136,7 @@ public virtual void OnUpdate()
{ {
if (Manager.IsCreating && !Rectangle.IsEmpty) if (Manager.IsCreating && !Rectangle.IsEmpty)
{ {
Point currentPosition = InputManager.MousePosition0Based; Point pos = InputManager.MousePosition0Based;
if (Manager.IsCornerMoving) if (Manager.IsCornerMoving)
{ {
@ -146,19 +146,19 @@ public virtual void OnUpdate()
{ {
if (NodeType == NodeType.Rectangle) if (NodeType == NodeType.Rectangle)
{ {
currentPosition = CaptureHelpers.SnapPositionToDegree(StartPosition, currentPosition, 90, 45); pos = CaptureHelpers.SnapPositionToDegree(StartPosition, pos, 90, 45);
} }
else if (NodeType == NodeType.Line) else if (NodeType == NodeType.Line)
{ {
currentPosition = CaptureHelpers.SnapPositionToDegree(StartPosition, currentPosition, 45, 0); pos = CaptureHelpers.SnapPositionToDegree(StartPosition, pos, 45, 0);
} }
} }
else if (Manager.IsSnapResizing) else if (Manager.IsSnapResizing)
{ {
currentPosition = Manager.SnapPosition(StartPosition, currentPosition); pos = Manager.SnapPosition(StartPosition, pos);
} }
EndPosition = currentPosition; EndPosition = pos;
} }
else if (Manager.IsMoving) else if (Manager.IsMoving)
{ {

View file

@ -41,6 +41,12 @@ public class FreehandRegionShape : BaseRegionShape
public override void OnUpdate() public override void OnUpdate()
{ {
if (Manager.IsCreating) if (Manager.IsCreating)
{
if (Manager.IsCornerMoving)
{
Move(InputManager.MouseVelocity);
}
else
{ {
Point pos = InputManager.MousePosition0Based; Point pos = InputManager.MousePosition0Based;
@ -60,6 +66,7 @@ public override void OnUpdate()
} }
isPolygonMode = Manager.IsProportionalResizing; isPolygonMode = Manager.IsProportionalResizing;
}
Rectangle = points.CreateRectangle(); Rectangle = points.CreateRectangle();
} }