PathCaliperDiameter
Computes the longest and the shortest width of the input path measured as distance between parallel lines containing the whole path.
Syntax
C++
C#
Python
def PathCaliperDiameter( inPath: Path, /, *, outMinDiameter: Segment2D | None = None, outMaxDiameter: Segment2D | None = None ) -> ( outMinDiameterLength: float, outMaxDiameterLength: float )
Parameters
| Name | Type | Default | Description | |
|---|---|---|---|---|
![]() |
inPath | Path | Input path | |
![]() |
outMinDiameter | Segment2D | None | None | |
![]() |
outMinDiameterLength | float | ||
![]() |
outMaxDiameter | Segment2D | None | None | |
![]() |
outMaxDiameterLength | float |


