SensorProjectionOptionsSpaceProjectionDistance Property |
Gets or sets the distance to which to project the portions of the sensor that do not intersect
the ellipsoid. If
SpaceProjectionType is
ProjectToRadius,
this is the radial limit of the sensor. If it is
ProjectToPlane, it
is the distance from the sensor origin to the closest point on the plane. The actual projection distance
depends on the value of this property and the value of the sensor's
Radius
property. This property does NOT affect the portion of the sensor that intersects with the central body,
even if its value is less than the distance to the central body.
See the Remarks section for details.
Namespace:
AGI.Foundation.Geometry.Shapes
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public double SpaceProjectionDistance { get; set; }
Public Property SpaceProjectionDistance As Double
Get
Set
public:
property double SpaceProjectionDistance {
double get ();
void set (double value);
}
member SpaceProjectionDistance : float with get, set
Property Value
Type:
DoubleRemarks SpaceProjectionDistance | Sensor Radius | Effect |
---|
<= 0.0 | Positive Infinity | Sensor is projected to a distance twice the distance from the sensor origin to the ellipsoid center. |
<= 0.0 | Any Finite Number | Sensor is projected to the Radius specified by the sensor. |
> 0.0 | Any value | Sensor is projected to the specified SpaceProjectionDistance. |
See Also