LwPolylinePolygonalVertexes Method
|
Obtains a list of vertexes that represent the polyline approximating the curve segments as necessary.
Namespace:
DXFReaderNET.Entities
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public List<Vector2> PolygonalVertexes(
int bulgePrecision,
double weldThreshold,
double bulgeThreshold
)
Public Function PolygonalVertexes (
bulgePrecision As Integer,
weldThreshold As Double,
bulgeThreshold As Double
) As List(Of Vector2)
public:
List<Vector2>^ PolygonalVertexes(
int bulgePrecision,
double weldThreshold,
double bulgeThreshold
)
member PolygonalVertexes :
bulgePrecision : int *
weldThreshold : float *
bulgeThreshold : float -> List<Vector2>
METHOD PolygonalVertexes(
bulgePrecision AS LONG,
weldThreshold AS REAL8,
bulgeThreshold AS REAL8
) AS List<Vector2>
Parameters
- bulgePrecision
- Type: SystemInt32
Curve segments precision (a value of zero means that no approximation will be made). - weldThreshold
- Type: SystemDouble
Tolerance to consider if two new generated vertexes are equal. - bulgeThreshold
- Type: SystemDouble
Minimum distance from which approximate curved segments of the polyline.
Return Value
Type:
ListVector2A list of vertexes expressed in object coordinate system.
See Also