Click or drag to resize
AB4D logo

MeshAnalyzerCreateEdgeLines Method

Note: This API is now obsolete.

CreateEdgeLines is an old method to generate edge lines. Please use the new method by using the EdgeLinesFactory class. Use this method only if the new method does not provide the correct results.

Namespace: Ab3d.Utilities
Assembly: Ab3d.PowerToys (in Ab3d.PowerToys.dll) Version: 11.1.8864.1045
Syntax
C#
[ObsoleteAttribute("This method is obsolete. Please use EdgeLinesFactory to generate edge lines because it uses a much faster algorithm to generate edge lines. This method will not be removed in any future version and can be used when the new EdgeLinesFactory does not work correctly.")]
public List<int> CreateEdgeLines(
	double edgeStartAngleInDegrees,
	bool useNewPositions = true
)

Parameters

edgeStartAngleInDegrees  Double
angle in degrees
useNewPositions  Boolean  (Optional)
when true (by default), then indexes from Positions are used; if false then indexes from original MeshGeometry3D.Positions are used

Return Value

ListInt32
list of position indices (indexes) that represent edge lines
See Also