SelectOuterPaths
Selects paths which do not obstruct visibility of other paths from a point.
Syntax
C++
C#
Python
def SelectOuterPaths( inPaths: list[Path], inCenterPoint: Point2D, /, *, inTolerance: float = 0.0 ) -> outOuterPaths: list[Path]
Parameters
| Name | Type | Range | Default | Description | |
|---|---|---|---|---|---|
![]() |
inPaths | list[Path] | Input paths from which the outer ones will be selected | ||
![]() |
inCenterPoint | Point2D | Reference point used to determine path visibility | ||
![]() |
inTolerance | float | 0.0 - 1.0 | 0.0 | Fraction of the path sections that are allowed to obstruct visibility of other paths not rendering the path not-outer |
![]() |
outOuterPaths | list[Path] | Paths classified as outer |


