Click or drag to resize
Ab4d.SharpEngine 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: Ab4d.SharpEngine.Utilities
Assembly: Ab4d.SharpEngine (in Ab4d.SharpEngine.dll) Version: 3.2.9386+3a404a3e1ebfa4efd231da7fe6f10dfb23b95dc4
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(
	float edgeStartAngleInDegrees,
	bool useNewPositions = true
)

Parameters

edgeStartAngleInDegrees  Single
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
Remarks

[Missing <remarks> documentation for "M:Ab4d.SharpEngine.Utilities.MeshAnalyzer.CreateEdgeLines(System.Single,System.Boolean)"]

See Also