Version

FastFlatten Method

Flattens a set of points
Syntax
'Declaration
 
Public Function FastFlatten( _
   ByVal x() As Double, _
   ByVal y() As Double, _
   ByVal count As Integer, _
   ByVal resolution As Double _
) As List(Of Point)
public List<Point> FastFlatten( 
   double[] x,
   double[] y,
   int count,
   double resolution
)

Parameters

x
The array of x values to flatten.
y
The array of y values to flatten.
count
The number of values being provided.
resolution
The resolution to flatten the points to.

Return Value

The list 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