Skip to content
This repository has been archived by the owner on Oct 11, 2023. It is now read-only.

d5252591 ad72 08e5 0868 5d2358d3e665

haplokuon edited this page May 6, 2023 · 1 revision

Transform(IEnumerable<Vector3>, CoordinateSystem, CoordinateSystem) Method

netDxf 3.0.0 Library

Transforms a point list between coordinate systems.

Definition

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> 

Parameters

  IEnumerable(Vector3)
Points to transform.
  CoordinateSystem
Points coordinate system.
  CoordinateSystem
Coordinate system of the transformed points.

Return Value

List(Vector3)
Transformed point list.

See Also

Reference

UCS Class
Transform Overload
netDxf.Tables Namespace

Clone this wiki locally