You are here: Start » FIL.NET » Invoke.SegmentArrayIntersections

Invoke.SegmentArrayIntersections

Computes a common points or segment of any segments from the set.

Namespace:Fil
Assembly:FilNet.dll

Syntax

C++
C#
 
public static void SegmentArrayIntersections
(
	List<Fil.Segment2D> inSegments,
	List<Fil.Point2D> outIntersectionPoints,
	List<int> outFirstIntersectionIndices,
	List<int> outSecondIntersectionIndices,
	List<Fil.Segment2D> outOverlapSegments,
	List<int> outFirstOverlapIndices,
	List<int> outSecondOverlapIndices
)

Parameters

Name Type Range Default Description
inSegmentsSystem.Collections.Generic.List<Fil.Segment2D>Input segments.
outIntersectionPointsSystem.Collections.Generic.List<Fil.Point2D>Intersection points.
outFirstIntersectionIndicesSystem.Collections.Generic.List<int>First indices of the input segments which corresponds to the intersection points.
outSecondIntersectionIndicesSystem.Collections.Generic.List<int>Second indices of the input segments which corresponds to the intersection points.
outOverlapSegmentsSystem.Collections.Generic.List<Fil.Segment2D>Overlap segments.
outFirstOverlapIndicesSystem.Collections.Generic.List<int>First indices of the input segments which corresponds to the overlap segments.
outSecondOverlapIndicesSystem.Collections.Generic.List<int>Second indices of the input segments which corresponds to the overlap segments.

See also