CoordinateTransformationTransform Method (Double, Double, NullableDouble, Double, Double, NullableDouble) | 
 
            Transforms a coordinate.
            
 
    Namespace: 
   Ptv.Components.Projections
    Assembly:
   Ptv.Components.Projections (in Ptv.Components.Projections.dll) Version: 1.7.10.0
Syntaxpublic virtual void Transform(
	double xin,
	double yin,
	Nullable<double> zin,
	out double xout,
	out double yout,
	out Nullable<double> zout
)
Public Overridable Sub Transform ( 
	xin As Double,
	yin As Double,
	zin As Nullable(Of Double),
	<OutAttribute> ByRef xout As Double,
	<OutAttribute> ByRef yout As Double,
	<OutAttribute> ByRef zout As Nullable(Of Double)
)
public:
virtual void Transform(
	double xin, 
	double yin, 
	Nullable<double> zin, 
	[OutAttribute] double% xout, 
	[OutAttribute] double% yout, 
	[OutAttribute] Nullable<double>% zout
)
abstract Transform : 
        xin : float * 
        yin : float * 
        zin : Nullable<float> * 
        xout : float byref * 
        yout : float byref * 
        zout : Nullable<float> byref -> unit 
override Transform : 
        xin : float * 
        yin : float * 
        zin : Nullable<float> * 
        xout : float byref * 
        yout : float byref * 
        zout : Nullable<float> byref -> unit Parameters
- xin
 - Type: SystemDouble
Value containing the x-coordinate. - yin
 - Type: SystemDouble
Value containing the y-coordinate. - zin
 - Type: SystemNullableDouble
Value containing the z-coordinate, nullable. - xout
 - Type: SystemDouble
On return, contains the transformed x-coordinate. - yout
 - Type: SystemDouble
On return, contains the transformed y-coordinate. - zout
 - Type: SystemNullableDouble
On return, contains the transformed z-coordinate. 
Implements
ICoordinateTransformationTransform(Double, Double, NullableDouble, Double, Double, NullableDouble)
Exceptions
RemarksThe returned z-coordinate is set to null if the input z-coordinate was null as well.
See Also