Click or drag to resize

TransformDelegate Delegate

A delegate for transforming a coordinate.

Namespace:  Ptv.Components.Projections.Direct
Assembly:  Ptv.Components.Projections (in Ptv.Components.Projections.dll) Version: 1.7.10.0
Syntax
public delegate void TransformDelegate(
	ref double x,
	ref double y,
	ref double z
)

Parameters

x
Type: SystemDouble
The x-coordinate to transform (in and out).
y
Type: SystemDouble
The y-coordinate to transform (in and out).
z
Type: SystemDouble
The z-coordinate to transform (in and out, see remarks on CoordinateTransformations).
Remarks
This delegate is used along with GetTransformDelegate / CoordinateTransformation.OnGetTransform to provide additional coordinate transformation routines to CoordinateTransformation.
See Also