Computes the coordinates of the 3d vector in a new coordinate system.

Namespace:  ceometric.VectorGeometry
Assembly:  ceometric.VectorGeometry (in ceometric.VectorGeometry.dll) Version: 1.8.0.0 (1.8.0.0)

Syntax

C#
public Vector3d TransformCoordinates(
	CoordinateSystem actualCS,
	CoordinateSystem newCS
)
Visual Basic (Declaration)
Public Function TransformCoordinates ( _
	actualCS As CoordinateSystem, _
	newCS As CoordinateSystem _
) As Vector3d
Visual C++
public:
Vector3d^ TransformCoordinates(
	CoordinateSystem^ actualCS, 
	CoordinateSystem^ newCS
)

Parameters

actualCS
Type: ceometric.VectorGeometry..::.CoordinateSystem
The actual coordinate system.
newCS
Type: ceometric.VectorGeometry..::.CoordinateSystem
The new coordinate system.

Return Value

Returns a representation of the 3d vector in a transformed coordinate system.

See Also