SensorFieldOfViewSetRadialLimits Method |
Sets the radial limits of the sensor volume, which restrict the volume to a spherical shell.
Namespace:
AGI.Foundation.Geometry.Shapes
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 26.3.426.0 (26.3.426.0)
Syntaxpublic void SetRadialLimits(
double minimum,
double maximum
)
Public Sub SetRadialLimits (
minimum As Double,
maximum As Double
)
public:
void SetRadialLimits(
double minimum,
double maximum
)
member SetRadialLimits :
minimum : float *
maximum : float -> unit
Parameters
- minimum
- Type: SystemDouble
The radial distance to the spherical surface defining the minimum range of the sensor volume.
- maximum
- Type: SystemDouble
The radial distance to the spherical surface defining the maximum range of the sensor volume.
Exceptions| Exception | Condition |
|---|
| ArgumentOutOfRangeException |
The minimum and maximum radial limits must be in the range from 0.0 to PositiveInfinity.
|
| ArgumentException |
The minimum radial limit must be less the maximum radial limit.
|
See Also