Click or drag to resize

DistanceToPositionDisplayCondition Constructor (Cartesian, Double, Double)

Initializes a distance display condition with the inclusive distance interval [minimumDistance, maximumDistance]. When this display condition is assigned to an object, such as a primitive, the object is only rendered when the distance, in meters, from the camera to the position is within the interval.

Namespace:  AGI.Foundation.Graphics
Assembly:  AGI.Foundation.Graphics (in AGI.Foundation.Graphics.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public DistanceToPositionDisplayCondition(
	Cartesian position,
	double minimumDistance,
	double maximumDistance
)

Parameters

position
Type: AGI.Foundation.CoordinatesCartesian
The position used to compute the distance from the camera.
minimumDistance
Type: SystemDouble
The minimum distance, in meters, of the inclusive distance interval.
maximumDistance
Type: SystemDouble
The maximum distance, in meters, of the inclusive distance interval. Use Double.MaxValue to ignore checking the maximum distance.
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionminimumDistance and maximumDistance must be greater than or equal to zero.
Remarks
position is interpreted to be in the default EarthCentralBody.FixedFrame reference frame. This display condition can be assigned to multiple objects.
See Also