You are here: Start » FIL.NET » Function Reference » Path » Path Features » FIL.PathSelfIntersections
Checks if a path has any self-intersections and computes all of them.
Namespace: | FilNet |
---|---|
Assembly: | FIL.NET.dll |
Syntax
C++
C#
public static void PathSelfIntersections ( FilNet.Path inPath, IList<FilNet.Point2D> outSelfIntersections, NullableRef<List<int>> outFirstSegmentIndices, NullableRef<List<int>> outSecondSegmentIndices, NullableValue<bool> outIsSelfIntersecting )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inPath | FilNet.Path | Input path. | ||
![]() | outSelfIntersections | System.Collections.Generic.IList<FilNet.Point2D> | |||
![]() | outFirstSegmentIndices | FilNet.NullableRef<System.Collections.Generic.List<int>> | First indices of the segments of the path which generate found intersection points. Can be null to skip this parameter calculation. | ||
![]() | outSecondSegmentIndices | FilNet.NullableRef<System.Collections.Generic.List<int>> | Second indices of the segments of the path which generate found intersection points. Can be null to skip this parameter calculation. | ||
![]() | outIsSelfIntersecting | FilNet.NullableValue<bool> | Can be null to skip this parameter calculation. |
Function Overrides
- PathSelfIntersections(Path, IList<Point2D>)
- PathSelfIntersections(Path, IList<Point2D>, IList<Int32>, IList<Int32>, Boolean)