|
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.UtilitiesAssembly: Ab4d.SharpEngine (in Ab4d.SharpEngine.dll) Version: 2.0.8956+4c7684e186ca1be74e7a284fbe739d9a1b843d3c
Syntax [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
ListInt32list of position indices (indexes) that represent edge lines
See Also