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

9d6eba5b 0f1b c037 9a5c 64052bb4c1df

haplokuon edited this page May 6, 2023 · 1 revision

PolygonMesh Constructor

netDxf 3.0.0 Library

Initializes a new instance of the PolygonMesh class.

Definition

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

C#

public PolygonMesh(
	short u,
	short v,
	IEnumerable<Vector3> vertexes
)

VB

Public Sub New ( 
	u As Short,
	v As Short,
	vertexes As IEnumerable(Of Vector3)
)

C++

public:
PolygonMesh(
	short u, 
	short v, 
	IEnumerable<Vector3>^ vertexes
)

F#

new : 
        u : int16 * 
        v : int16 * 
        vertexes : IEnumerable<Vector3> -> PolygonMesh

Parameters

  Int16
Number of vertexes along the U direction (local X axis).
  Int16
Number of vertexes along the V direction (local Y axis).
  IEnumerable(Vector3)
Array of UxV vertexes that represents the mesh grid.

See Also

Reference

PolygonMesh Class
netDxf.Entities Namespace

Clone this wiki locally