new OrthographicOffCenterFrustum(options)
The viewing frustum is defined by 6 planes.
Each plane is represented by a Cartesian4 object, where the x, y, and z components
define the unit vector normal to the plane, and the w component is the distance of the
plane from the origin/camera position.
| Name | Type | Description | ||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
options |
Object |
可选
An object with the following properties:
|
Example
var maxRadii = ellipsoid.maximumRadius;
var frustum = new SuperMap3D.OrthographicOffCenterFrustum();
frustum.right = maxRadii * SuperMap3D.Math.PI;
frustum.left = -c.frustum.right;
frustum.top = c.frustum.right * (canvas.clientHeight / canvas.clientWidth);
frustum.bottom = -c.frustum.top;
frustum.near = 0.01 * maxRadii;
frustum.far = 50.0 * maxRadii;
Members
-
bottomNumber
-
The bottom clipping plane.
- Default Value: undefined
farNumber
The distance of the far plane.
- Default Value: 500000000.0;
leftNumber
The left clipping plane.
- Default Value: undefined
nearNumber
The distance of the near plane.
- Default Value: 1.0
readonly projectionMatrixMatrix4
Gets the orthographic projection matrix computed from the view frustum.
rightNumber
The right clipping plane.
- Default Value: undefined
topNumber
The top clipping plane.
- Default Value: undefined
Methods
-
clone(result){OrthographicOffCenterFrustum}
-
Returns a duplicate of a OrthographicOffCenterFrustum instance.
Name Type Description resultOrthographicOffCenterFrustum 可选 The object onto which to store the result.
Returns:
Type Description OrthographicOffCenterFrustum The modified result parameter or a new OrthographicOffCenterFrustum instance if one was not provided. -
computeCullingVolume(position, direction, up){CullingVolume}
-
Creates a culling volume for this frustum.
Name Type Description positionCartesian3 The eye position.
directionCartesian3 The view direction.
upCartesian3 The up direction.
Returns:
Type Description CullingVolume A culling volume at the given position and orientation. Example
// Check if a bounding volume intersects the frustum. var cullingVolume = frustum.computeCullingVolume(cameraPosition, cameraDirection, cameraUp); var intersect = cullingVolume.computeVisibility(boundingVolume); -
equals(other){Boolean}
-
Compares the provided OrthographicOffCenterFrustum componentwise and returns
trueif they are equal,falseotherwise.Name Type Description otherOrthographicOffCenterFrustum 可选 The right hand side OrthographicOffCenterFrustum.
Returns:
Type Description Boolean trueif they are equal,falseotherwise. -
equalsEpsilon(other, relativeEpsilon, absoluteEpsilon){Boolean}
-
Compares the provided OrthographicOffCenterFrustum componentwise and returns
trueif they pass an absolute or relative tolerance test,falseotherwise.Name Type Default Description otherOrthographicOffCenterFrustum The right hand side OrthographicOffCenterFrustum.
relativeEpsilonNumber The relative epsilon tolerance to use for equality testing.
absoluteEpsilonNumber relativeEpsilon 可选 The absolute epsilon tolerance to use for equality testing.
Returns:
Type Description Boolean trueif this and other are within the provided epsilon,falseotherwise. -
getPixelDimensions(drawingBufferWidth, drawingBufferHeight, distance, pixelRatio, result){Cartesian2}
-
Returns the pixel's width and height in meters.
Name Type Description drawingBufferWidthNumber The width of the drawing buffer.
drawingBufferHeightNumber The height of the drawing buffer.
distanceNumber The distance to the near plane in meters.
pixelRatioNumber The scaling factor from pixel space to coordinate space.
resultCartesian2 The object onto which to store the result.
Throws:
-
-
drawingBufferWidth must be greater than zero.
- Type
- DeveloperError
-
-
-
drawingBufferHeight must be greater than zero.
- Type
- DeveloperError
-
-
-
pixelRatio must be greater than zero.
- Type
- DeveloperError
-
Returns:
Type Description Cartesian2 The modified result parameter or a new instance of Cartesian2with the pixel's width and height in the x and y properties, respectively.Example
// Example 1 // Get the width and height of a pixel. var pixelSize = camera.frustum.getPixelDimensions(scene.drawingBufferWidth, scene.drawingBufferHeight, 0.0, scene.pixelRatio, new SuperMap3D.Cartesian2()); -