RectangularSensorGraphics

SWVL new Cesium.RectangularSensorGraphics(options)

An optionally time-dynamic pyramid.
Name Type Description
options RectangularSensorGraphics.ConstructorOptions optional Object describing initialization options

Members

Gets the event that is raised whenever a new property is assigned.
Gets or sets the MaterialProperty specifying the the surface appearance of the sensor's dome.
Gets or sets the MaterialProperty specifying the the sensor's ellipsoid horizon surface appearance.
Gets or sets the MaterialProperty specifying the the sensor's ellipsoid surface appearance.

environmentConstraint : Property|undefined

Gets or sets the boolean Property determining if a sensor will intersect the environment, e.g. terrain or models, and discard the portion of the sensor that is occluded.

environmentIntersectionColor : Property|undefined

Gets or sets the Color Property of the line intersecting the environment.

environmentIntersectionWidth : Property|undefined

Gets or sets the Property that approximate width in meters of the line intersecting the environment.
Gets or sets the MaterialProperty specifying the surface appearance of the portion of the sensor occluded by the environment.
Gets or sets the Color Property specifying the color of the line formed by the intersection of the pyramid and other central bodies.
Gets or sets the numeric Property specifying the width of the line formed by the intersection of the pyramid and other central bodies.
Gets or sets the MaterialProperty specifying the the pyramid's appearance.
Gets or sets the SensorVolumePortionToDisplay specifying the portion of the sensor to display.
Gets or sets the numeric Property specifying the radius of the pyramid's projection.
Gets or sets the boolean Property specifying the visibility of the pyramid.
Gets or sets the boolean Property specifying the visibility of the dome surfaces defining the sensor volume.

showEllipsoidHorizonSurfaces : Property|undefined

Gets or sets the boolean Property specifying the visibility of the ellipsoid horizon surfaces defining the sensor volume.

showEllipsoidSurfaces : Property|undefined

Gets or sets the boolean Property specifying the visibility of the ellipsoid surfaces defining the sensor volume.

showEnvironmentIntersection : Property|undefined

Gets or sets the boolean Property that determines if a line is shown where the sensor intersects the environment, e.g. terrain or models.

showEnvironmentOcclusion : Property|undefined

Gets or sets the boolean Property determining if the portion of the sensor occluded by the environment will be drawn with RectangularSensorGraphics#environmentOcclusionMaterial.
Gets or sets the boolean Property specifying the visibility of the line formed by the intersection of the pyramid and other central bodies.

showLateralSurfaces : Property|undefined

Gets or sets the boolean Property specifying the visibility of the lateral surfaces defining the sensor volume.

showThroughEllipsoid : Property|undefined

Gets or sets the boolean Property specifying whether a sensor intersecting the ellipsoid is drawn through the ellipsoid and potentially out to the other side.
A Property which returns an array of Spherical instances representing the pyramid's projection.
A Property which returns an array of Spherical instances representing the pyramid's projection.

Methods

Duplicates a RectangularSensorGraphics instance.
Name Type Description
result RectangularSensorGraphics optional The object onto which to store the result.
Returns:
The modified result parameter or a new instance if one was not provided.
Assigns each unassigned property on this object to the value of the same property on the provided source object.
Name Type Description
source RectangularSensorGraphics The object to be merged into this object.

Type Definitions

Cesium.RectangularSensorGraphics.ConstructorOptions

Initialization options for the RectangularSensorGraphics constructor
Properties:
Name Type Attributes Default Description
show Property | Boolean <optional>
true Determines if the sensor will be shown.
portionToDisplay Property | SensorVolumePortionToDisplay <optional>
SensorVolumePortionToDisplay.COMPLETE Indicates what portion of the sensor is shown.
radius Property | Number <optional>
Number.POSITIVE_INFINITY The distance from the sensor origin to any point on the sensor dome.
xHalfAngle Property | Number <optional>
CesiumMath.PI_OVER_TWO The half-angle, in radians, of the sensor measured from the positive z-axis (principal direction) along the x-axis.
yHalfAngle Property | Number <optional>
CesiumMath.PI_OVER_TWO The half-angle, in radians, of the sensor measured from the positive z-axis (principal direction) along the y-axis.
lateralSurfaceMaterial MaterialProperty | Color <optional>
Color.WHITE The surface appearance of the sensor lateral surface, i.e., the outer sides of the sensor.
showLateralSurfaces Property | Boolean <optional>
true Determines if the lateral surfaces, i.e., the outer sides of the sensor, are shown.
ellipsoidHorizonSurfaceMaterial MaterialProperty | Color <optional>
Color.WHITE The surface appearance of the ellipsoid horizon surfaces, i.e., the sides formed from occlusion due to the ellipsoid hoirzon.
showEllipsoidHorizonSurfaces Property | Boolean <optional>
true Determines if the ellipsoid horizon surfaces, i.e., the sides formed from occlusion due to the ellipsoid hoirzon, are shown.
ellipsoidSurfaceMaterial MaterialProperty | Color <optional>
Color.WHITE The appearance of the ellipsoid surface where the sensor intersects.
showEllipsoidSurfaces Property | Boolean <optional>
true Determines if the ellipsoid/sensor intersection surfaces are shown.
domeSurfaceMaterial MaterialProperty | Color <optional>
Color.WHITE The appearance of the sensor dome surfaces.
showDomeSurfaces Property | Boolean <optional>
true Determines if the sensor dome surfaces are shown.
showIntersection Property | Boolean <optional>
true Determines if a polyline is shown where the sensor intersections the ellipsoid.
intersectionColor Property | Color <optional>
Color.WHITE The color of the polyline where the sensor intersects the ellipsoid.
intersectionWidth Property | Number <optional>
5.0 The approximate pixel width of the polyline where the sensor intersects the ellipsoid.
showThroughEllipsoid Property | Boolean <optional>
false Determines if a sensor intersecting the ellipsoid is drawn through the ellipsoid and potentially out to the other side.
environmentConstraint Property | Boolean <optional>
false Determines if the sensor will be occluded by the environment, e.g. terrain or models.
showEnvironmentOcclusion Property | Boolean <optional>
false Determines if the portion of the sensor occluded by the environment is shown.
environmentOcclusionMaterial MaterialProperty | Color <optional>
Color.WHITE The appearance of the surface that is occluded by the environment.
showEnvironmentIntersection Property | Boolean <optional>
false Determines if the line intersecting the sensor and the environment is shown.
environmentIntersectionColor Property | Color <optional>
Color.WHITE The color of the line intersecting the sensor and the environment.
environmentIntersectionWidth Property | Number <optional>
5.0 The width of the line intersecting the sensor and the environment in meters.