transforms coordinates in place. The values of the points array will be replaced with transformed coordinates

Namespace:  EGIS.Projections
Assembly:  EGIS.Projections (in EGIS.Projections.dll)

Syntax

Visual Basic
Function Transform ( _
	points As Double(), _
	pointCount As Integer, _
	direction As TransformDirection _
) As Integer
C#
int Transform(
	double[] points,
	int pointCount,
	TransformDirection direction
)
Visual C++
int Transform(
	array<double>^ points, 
	int pointCount, 
	TransformDirection direction
)
JavaScript
function transform(points, pointCount, direction);

Parameters

points
Type: array<System..::..Double>[]()[][]
pointCount
Type: System..::..Int32
direction
Type: EGIS.Projections..::..TransformDirection

Return Value

number of points transformed

See Also