Computes a list of polylines from a list of unordered edges.
Namespace:
ceometric.ComputationalGeometryAssembly: ceometric.ComputationalGeometry (in ceometric.ComputationalGeometry.dll) Version: 2.4.0.0 (2.4.0.0)
Syntax
C# |
---|
public static List<Polyline> ConstructFromUnorderedSegments( List<Edge> unorderedEdges, int relevantDecimals, ref int zeroLength, bool eliminateZeroLengthSegments ) |
Visual Basic (Declaration) |
---|
Public Shared Function ConstructFromUnorderedSegments ( _ unorderedEdges As List(Of Edge), _ relevantDecimals As Integer, _ ByRef zeroLength As Integer, _ eliminateZeroLengthSegments As Boolean _ ) As List(Of Polyline) |
Visual C++ |
---|
public: static List<Polyline^>^ ConstructFromUnorderedSegments( List<Edge^>^ unorderedEdges, int relevantDecimals, int% zeroLength, bool eliminateZeroLengthSegments ) |
Parameters
- unorderedEdges
- Type: System.Collections.Generic..::.List<(Of <(Edge>)>)
A list of unordered edges.
- relevantDecimals
- Type: System..::.Int32
The number of relevant decimals digits.
- zeroLength
- Type:
System..::.Int32
%
The number of zero length segments.
- eliminateZeroLengthSegments
- Type: System..::.Boolean
True if segments shorter than the relevant length shall be eliminated, false otherwise.
Return Value
A list of polylines.Remarks
A polyline is a segmented line defined by a sequence of vertices.