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