You are here: Start » AVL.NET » Function Reference » Path » Path Features » AVL.PathCaliperDiameter
Computes the longest and the shortest width of the input path measured as distance between parallel lines containing the whole path.
| Namespace: | AvlNet |
|---|---|
| Assembly: | AVL.NET.dll |
Syntax
C++
C#
public static void PathCaliperDiameter ( AvlNet.Path inPath, NullableValue<AvlNet.Segment2D> outMinDiameter, NullableValue<float> outMinDiameterLength, NullableValue<AvlNet.Segment2D> outMaxDiameter, NullableValue<float> outMaxDiameterLength )
Parameters
| Name | Type | Range | Default | Description | |
|---|---|---|---|---|---|
![]() | inPath | AvlNet.Path | Input path. | ||
![]() | outMinDiameter | AvlNet.NullableValue<AvlNet.Segment2D> | Can be null to skip this parameter calculation. | ||
![]() | outMinDiameterLength | AvlNet.NullableValue<float> | Can be null to skip this parameter calculation. | ||
![]() | outMaxDiameter | AvlNet.NullableValue<AvlNet.Segment2D> | Can be null to skip this parameter calculation. | ||
![]() | outMaxDiameterLength | AvlNet.NullableValue<float> | Can be null to skip this parameter calculation. |
Errors
List of possible exceptions:
| Error type | Description |
|---|---|
| DomainError | Empty path on input in PathCaliperDiameter. |


