BoxDiagrams.DiagramGestureAnalyzer.DragState.DragState C# (CSharp) Method

DragState() public method

public DragState ( DiagramGestureAnalyzer ga, MouseEventArgs down ) : System
ga DiagramGestureAnalyzer
down MouseEventArgs
return System
			public DragState(DiagramGestureAnalyzer ga, MouseEventArgs down)
				: base(ga, down)
			{
				Control = ga.Control;
				_inputTransform = Control.InputTransform;
				_points = ToShapeSpace(MousePoints);
				_unfilteredPoints = ToShapeSpace(UnfilteredMousePoints);
			}
			public Util.UI.UndoStack UndoStack { get { return Control.Document.UndoStack; } }
DiagramGestureAnalyzer.DragState