BoxDiagrams.DiagramGestureAnalyzer.DragState.ToShapeSpace C# (CSharp) 메소드

ToShapeSpace() 공개 메소드

public ToShapeSpace ( IListSource mousePoints ) : IListSource
mousePoints IListSource
리턴 IListSource
			public IListSource<DragPoint> ToShapeSpace(IListSource<DragPoint> mousePoints)
			{
				return mousePoints.Select(dp => new DragPoint(dp, _inputTransform));
			}
			public Vector<float> TotalDelta
DiagramGestureAnalyzer.DragState