Back to FabImage Library website
You are here: Start » Function Reference » Path » Path Combinators » PathPathIntersections

PathPathIntersections
Header: | FIL.h |
---|---|
Namespace: | fil |
Module: | FoundationPro |
Computes the common points of two paths.
Syntax
C++
C#
void fil::PathPathIntersections ( const fil::Path& inPath1, const fil::Path& inPath2, ftl::Array<fil::Point2D>& outIntersectionPoints, ftl::Optional<ftl::Array<int>&> outSegmentIndices1 = ftl::NIL, ftl::Optional<ftl::Array<int>&> outSegmentIndices2 = ftl::NIL )
Parameters
Name | Type | Default | Description | |
---|---|---|---|---|
![]() |
inPath1 | const Path& | Input path | |
![]() |
inPath2 | const Path& | Input path | |
![]() |
outIntersectionPoints | Array<Point2D>& | Intersections between the input paths | |
![]() |
outSegmentIndices1 | Optional<Array<int>&> | NIL | Indices of the segments of the first path which generate found intersection points |
![]() |
outSegmentIndices2 | Optional<Array<int>&> | NIL | Indices of the segments of the second path which generate found intersection points |
Optional Outputs
The computation of following outputs can be switched off by passing value ftl::NIL
to these parameters: outSegmentIndices1, outSegmentIndices2.
Read more about Optional Outputs.
Description
The operation computes an array of the intersection points of two given paths.
Examples
![]() |
![]() |
![]() |
PathPathIntersections run on the sample paths. The resulting outIntersectionPoints were drawn onto the input paths.