CoordinateTransformationTransform Method (Double, Double, 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 public virtual void Transform(
double[] xin,
double[] yin,
double[] zin,
double[] xout,
double[] yout,
double[] zout
)
Public Overridable Sub Transform (
xin As Double(),
yin As Double(),
zin As Double(),
xout As Double(),
yout As Double(),
zout As Double()
)
public:
virtual void Transform(
array<double>^ xin,
array<double>^ yin,
array<double>^ zin,
array<double>^ xout,
array<double>^ yout,
array<double>^ zout
)
abstract Transform :
xin : float[] *
yin : float[] *
zin : float[] *
xout : float[] *
yout : float[] *
zout : float[] -> unit
override Transform :
xin : float[] *
yin : float[] *
zin : float[] *
xout : float[] *
yout : float[] *
zout : float[] -> unit
Parameters
- xin
- Type: SystemDouble
Array containing the x-coordinates to transform. - yin
- Type: SystemDouble
Array containing the y-coordinates to transform. - zin
- Type: SystemDouble
Array containing the z-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. - zout
- Type: SystemDouble
Array in which to store the transformed z-coordinates.
Implements
ICoordinateTransformationTransform(Double, Double, Double, Double, Double, Double)Exceptions Remarks The caller is responsible for allocating memory for the output arrays. It is allowed
to use the input arrays in xout, yout and zout.
See Also