ICoordinateTransformationTransform Method (Double, Double, Double, Double) |
Transforms a set of coordinates.
Namespace:
Ptv.Components.Projections
Assembly:
Ptv.Components.Projections (in Ptv.Components.Projections.dll) Version: 1.7.10.0
Syntax void Transform(
double[] xin,
double[] yin,
double[] xout,
double[] yout
)
Sub Transform (
xin As Double(),
yin As Double(),
xout As Double(),
yout As Double()
)
void Transform(
array<double>^ xin,
array<double>^ yin,
array<double>^ xout,
array<double>^ yout
)
abstract Transform :
xin : float[] *
yin : float[] *
xout : float[] *
yout : float[] -> unit
Parameters
- xin
- Type: SystemDouble
Array containing the x-coordinates to transform. - yin
- Type: SystemDouble
Array containing the y-coordinates to transform. - xout
- Type: SystemDouble
Array in which to store the transformed x-coordinates. - yout
- Type: SystemDouble
Array in which to store the transformed y-coordinates.
Exceptions Remarks The caller is responsible for allocating memory for the output arrays. It is allowed
to use the input arrays in xout and yout.
See Also