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

9225dc57 bbb5 b236 1925 7ca055718425

haplokuon edited this page May 6, 2023 · 1 revision

Transform(IEnumerable<Vector2>, Vector3, Double) Method

netDxf 3.0.0 Library

Transform a 2d point list from object coordinates to world coordinates.

Definition

Namespace: netDxf
Assembly: netDxf (in netDxf.dll) Version: 3.0.0

C#

public static List<Vector3> Transform(
	IEnumerable<Vector2> points,
	Vector3 zAxis,
	double elevation
)

VB

Public Shared Function Transform ( 
	points As IEnumerable(Of Vector2),
	zAxis As Vector3,
	elevation As Double
) As List(Of Vector3)

C++

public:
static List<Vector3>^ Transform(
	IEnumerable<Vector2>^ points, 
	Vector3 zAxis, 
	double elevation
)

F#

static member Transform : 
        points : IEnumerable<Vector2> * 
        zAxis : Vector3 * 
        elevation : float -> List<Vector3> 

Parameters

  IEnumerable(Vector2)
Point to transform.
  Vector3
Object normal vector.
  Double
Object elevation.

Return Value

List(Vector3)
Transformed points.

See Also

Reference

MathHelper Class
Transform Overload
netDxf Namespace

Clone this wiki locally