MathHelperMergeCollinearLines Method
|
Merges line segments that are collinear and overlapping/touching.
Namespace:
DXFReaderNET
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.12.2
Syntaxpublic static List<Line> MergeCollinearLines(
List<Line> lines
)
Public Shared Function MergeCollinearLines (
lines As List(Of Line)
) As List(Of Line)
public:
static List<Line^>^ MergeCollinearLines(
List<Line^>^ lines
)
static member MergeCollinearLines :
lines : List<Line> -> List<Line>
STATIC METHOD MergeCollinearLines(
lines AS List<Line>
) AS List<Line>
Parameters
- lines
- Type: System.Collections.GenericListLine
The list of lines to merge.
Return Value
Type:
ListLineA list of merged lines.
See Also