Computes a coordinate transformation.
Namespace:
ceometric.VectorGeometryAssembly: ceometric.VectorGeometry (in ceometric.VectorGeometry.dll) Version: 1.8.0.0 (1.8.0.0)
Syntax
C# |
---|
public static List<Ellipse> TransformCoordinates( List<Ellipse> ellipses, CoordinateSystem actualCS, CoordinateSystem newCS ) |
Visual Basic (Declaration) |
---|
Public Shared Function TransformCoordinates ( _ ellipses As List(Of Ellipse), _ actualCS As CoordinateSystem, _ newCS As CoordinateSystem _ ) As List(Of Ellipse) |
Visual C++ |
---|
public: static List<Ellipse^>^ TransformCoordinates( List<Ellipse^>^ ellipses, CoordinateSystem^ actualCS, CoordinateSystem^ newCS ) |
Parameters
- ellipses
- Type: System.Collections.Generic..::.List<(Of <(Ellipse>)>)
A generic list of circles.
- actualCS
- Type: ceometric.VectorGeometry..::.CoordinateSystem
The actual CoordinateSystem.
- newCS
- Type: ceometric.VectorGeometry..::.CoordinateSystem
The new CoordinateSystem.
Return Value
Returns a list of ellipses in a transformed coordinate system.Remarks
This method directly modifies the entries of the list for performance reasons.