Version

GetFlattened Method

Gets the collection of flattened points.
Syntax
'Declaration
 
Public Function GetFlattened( _
   ByVal pointsList As IList(Of Point), _
   ByVal resolution As Double, _
   ByVal x As Func(Of Integer,Double), _
   ByVal y As Func(Of Integer,Double) _
) As IList(Of Point)
public IList<Point> GetFlattened( 
   IList<Point> pointsList,
   double resolution,
   Func<int,double> x,
   Func<int,double> y
)

Parameters

pointsList
List of points
resolution
Resolution
x
X-function
y
Y-function

Return Value

Collection of flattened points
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also