SelectInnerPaths
Selects paths which are visible from a point.
Syntax
C++
C#
Python
def SelectInnerPaths( inPaths: list[Path], inCenterPoint: Point2D, /, *, inTolerance: float = 0.0 ) -> outInnerPaths: list[Path]
Parameters
| Name | Type | Range | Default | Description | |
|---|---|---|---|---|---|
![]() |
inPaths | list[Path] | Input paths from which the inner 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 characteristic points that are allowed to be invisible from the inCenterPoint not rendering the path not-inner |
![]() |
outInnerPaths | list[Path] | Paths classified as inner |


