This repository has been archived by the owner on Oct 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 409
d5252591 ad72 08e5 0868 5d2358d3e665
haplokuon edited this page May 6, 2023
·
1 revision
netDxf 3.0.0 Library
Transforms a point list between coordinate systems.
Namespace: netDxf.Tables
Assembly: netDxf (in netDxf.dll) Version: 3.0.0
C#
public List<Vector3> Transform(
IEnumerable<Vector3> points,
CoordinateSystem from,
CoordinateSystem to
)
VB
Public Function Transform (
points As IEnumerable(Of Vector3),
from As CoordinateSystem,
to As CoordinateSystem
) As List(Of Vector3)
C++
public:
List<Vector3>^ Transform(
IEnumerable<Vector3>^ points,
CoordinateSystem from,
CoordinateSystem to
)
F#
member Transform :
points : IEnumerable<Vector3> *
from : CoordinateSystem *
to : CoordinateSystem -> List<Vector3>
- IEnumerable(Vector3)
- Points to transform.
- CoordinateSystem
- Points coordinate system.
- CoordinateSystem
- Coordinate system of the transformed points.
List(Vector3)
Transformed point list.