Click or drag to resize
AB4D logo

MeshAnalyzerCreateEdgeLines Method

CreateEdgeLines gets an angle in degrees and returns a list of position indices (indexes) that represent edge lines. En edge line is created when the difference between two adjacent triangle normals is bigger than the specified angle.

Namespace: Ab3d.Utilities
Assembly: Ab3d.PowerToys (in Ab3d.PowerToys.dll) Version: 11.0.8746.1045
Syntax
C#
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