CustomSensorPattern Constructor (IListUnitSpherical, Double) |
Initializes a new instance with the specified list of directions defining the
custom sensor pattern.
Namespace:
AGI.Foundation.Geometry.Shapes
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 26.3.426.0 (26.3.426.0)
Syntaxpublic CustomSensorPattern(
IList<UnitSpherical> directions,
double maximumRadius
)
Public Sub New (
directions As IList(Of UnitSpherical),
maximumRadius As Double
)
public:
CustomSensorPattern(
IList<UnitSpherical>^ directions,
double maximumRadius
)
new :
directions : IList<UnitSpherical> *
maximumRadius : float -> CustomSensorPatternParameters
- directions
- Type: System.Collections.GenericIListUnitSpherical
The list of directions that define the custom sensor pattern. The directions
are vectors originating from the sensor's origin and expressed in the sensor's axes.
See the Remarks section of the CustomSensorPattern reference documentation
for more information.
- maximumRadius
- Type: SystemDouble
The radial limit of the volume. This is the maximum range at which the sensor can detect a target.
Exceptions| Exception | Condition |
|---|
| ArgumentOutOfRangeException |
The maximumRadius radial limit must be in the range from 0.0 to PositiveInfinity.
|
See Also