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
9d6eba5b 0f1b c037 9a5c 64052bb4c1df
haplokuon edited this page May 6, 2023
·
1 revision
netDxf 3.0.0 Library
Initializes a new instance of the PolygonMesh
class.
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
- 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.