MeshEdge Constructor (Int32, Int32, Double)
|
Initializes a new instance of the MeshEdge class.
Namespace:
DXFReaderNET.Entities
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public MeshEdge(
int startVertexIndex,
int endVertexIndex,
double crease
)
Public Sub New (
startVertexIndex As Integer,
endVertexIndex As Integer,
crease As Double
)
public:
MeshEdge(
int startVertexIndex,
int endVertexIndex,
double crease
)
new :
startVertexIndex : int *
endVertexIndex : int *
crease : float -> MeshEdge
CONSTRUCTOR(
startVertexIndex AS LONG,
endVertexIndex AS LONG,
crease AS REAL8
)
Parameters
- startVertexIndex
- Type: SystemInt32
The edge start vertex index. - endVertexIndex
- Type: SystemInt32
The edge end vertex index. - crease
- Type: SystemDouble
The highest smoothing level at which the crease is retained (default: 0.0).
See Also