CoordinateTransformationTransform Method (Location, Location) |
Namespace:
Ptv.Components.Projections
Assembly:
Ptv.Components.Projections (in Ptv.Components.Projections.dll) Version: 1.7.10.0
Syntax public virtual void Transform(
Location[] locationsIn,
Location[] locationsOut
)
Public Overridable Sub Transform (
locationsIn As Location(),
locationsOut As Location()
)
public:
virtual void Transform(
array<Location>^ locationsIn,
array<Location>^ locationsOut
)
abstract Transform :
locationsIn : Location[] *
locationsOut : Location[] -> unit
override Transform :
locationsIn : Location[] *
locationsOut : Location[] -> unit
Parameters
- locationsIn
- Type: Ptv.Components.ProjectionsLocation
Array containing the locations to transform. - locationsOut
- Type: Ptv.Components.ProjectionsLocation
Array in which to put the transformed locations.
Implements
ICoordinateTransformationTransform(Location, Location)Exceptions Remarks
If locationsOut is set to null the transformed locations are written back to the input array.
It is also valid to specify the input array in locationsOut, which is the same as setting
locationsOut to null.
See Also