Modifier and Type | Method and Description |
---|---|
static Cartesian2 |
Cartesian2.abs(Cartesian2 cartesian,
Cartesian2 result)
Computes the absolute value of the provided Cartesian.
|
static Cartesian2 |
Cartesian2.add(Cartesian2 left,
Cartesian2 right,
Cartesian2 result)
Computes the componentwise sum of two Cartesians.
|
Cartesian2 |
Cartesian2.clone()
Duplicates this Cartesian2 instance.
|
Cartesian2 |
Cartesian2.clone(Cartesian2 result)
Duplicates this Cartesian2 instance.
|
static Cartesian2 |
Cartesian2.clone(Cartesian2 cartesian,
Cartesian2 result)
Duplicates a Cartesian2 instance.
|
static Cartesian2 |
Intersections2D.computeLineSegmentLineSegmentIntersection(double x00,
double y00,
double x01,
double y01,
double x10,
double y10,
double x11,
double y11)
Compute the intersection between 2 line segments
|
static Cartesian2 |
Intersections2D.computeLineSegmentLineSegmentIntersection(double x00,
double y00,
double x01,
double y01,
double x10,
double y10,
double x11,
double y11,
Cartesian2 result)
Compute the intersection between 2 line segments
|
static Cartesian2 |
Cartesian2.divideByScalar(Cartesian2 cartesian,
double scalar,
Cartesian2 result)
Divides the provided Cartesian componentwise by the provided scalar.
|
static Cartesian2 |
Cartesian2.divideComponents(Cartesian2 left,
Cartesian2 right,
Cartesian2 result)
Computes the componentwise quotient of two Cartesians.
|
Cartesian2 |
Cartesian2.equals(Cartesian2 right)
Compares this Cartesian against the provided Cartesian componentwise and returns true if they are equal, false otherwise.
|
static Cartesian2 |
Cartesian2.fromArray(double[] array,
Cartesian2 result)
Creates a Cartesian2 from two consecutive elements in an array.
|
static Cartesian2 |
Cartesian2.fromArray(double[] array,
int startingIndex,
Cartesian2 result)
Creates a Cartesian2 from two consecutive elements in an array.
|
static Cartesian2 |
Cartesian2.fromArray(com.google.gwt.core.client.JsArrayNumber array,
Cartesian2 result)
Creates a Cartesian2 from two consecutive elements in an array.
|
static Cartesian2 |
Cartesian2.fromArray(com.google.gwt.core.client.JsArrayNumber array,
int startingIndex,
Cartesian2 result)
Creates a Cartesian2 from two consecutive elements in an array.
|
static Cartesian2 |
Cartesian2.fromCartesian3(Cartesian3 cartesian,
Cartesian2 result)
Creates a Cartesian2 instance from an existing Cartesian3.
|
static Cartesian2 |
Cartesian2.fromCartesian4(Cartesian4 cartesian,
Cartesian2 result)
Creates a Cartesian2 instance from an existing Cartesian4.
|
static Cartesian2 |
Cartesian2.fromElements(double x,
double y,
Cartesian2 result)
Creates a Cartesian2 instance from x and y coordinates.
|
static Cartesian2 |
Matrix2.getColumn(Matrix2 matrix,
int index,
Cartesian2 result)
Retrieves a copy of the matrix column at the provided index as a Cartesian2 instance.
|
Cartesian2 |
OrthographicOffCenterFrustum.getPixelDimensions(double drawingBufferWidth,
double drawingBufferHeight,
double distance)
Returns the pixel's width and height in meters.
|
Cartesian2 |
PerspectiveFrustum.getPixelDimensions(double drawingBufferWidth,
double drawingBufferHeight,
double distance,
Cartesian2 result)
Returns the pixel's width and height in meters.
|
Cartesian2 |
OrthographicOffCenterFrustum.getPixelDimensions(double drawingBufferWidth,
double drawingBufferHeight,
double distance,
Cartesian2 result)
Returns the pixel's width and height in meters.
|
Cartesian2 |
PerspectiveOffCenterFrustum.getPixelDimensions(double drawingBufferWidth,
double drawingBufferHeight,
double distance,
Cartesian2 result)
Returns the pixel's width and height in meters.
|
Cartesian2 |
OrthographicFrustum.getPixelDimensions(double drawingBufferWidth,
double drawingBufferHeight,
double distance,
Cartesian2 result)
Returns the pixel's width and height in meters.
|
static Cartesian2 |
Matrix2.getRow(Matrix2 matrix,
int index,
Cartesian2 result)
Retrieves a copy of the matrix row at the provided index as a Cartesian2 instance.
|
static Cartesian2 |
Matrix2.getScale(Matrix2 matrix,
Cartesian2 result)
Extracts the non-uniform scale assuming the matrix is an affine transformation.
|
static Cartesian2 |
Cartesian2.lerp(Cartesian2 start,
Cartesian2 end,
double t,
Cartesian2 result)
Computes the linear interpolation or extrapolation at t using the provided cartesians.
|
static Cartesian2 |
Cartesian2.maximumByComponent(Cartesian2 first,
Cartesian2 second,
Cartesian2 result)
Compares two Cartesians and computes a Cartesian which contains the maximum components of the supplied Cartesians.
|
static Cartesian2 |
Cartesian2.minimumByComponent(Cartesian2 first,
Cartesian2 second,
Cartesian2 result)
Compares two Cartesians and computes a Cartesian which contains the minimum components of the supplied Cartesians.
|
static Cartesian2 |
Cartesian2.mostOrthogonalAxis(Cartesian2 cartesian,
Cartesian2 result)
Returns the axis that is most orthogonal to the provided Cartesian.
|
static Cartesian2 |
Cartesian2.multiplyByScalar(Cartesian2 cartesian,
double scalar,
Cartesian2 result)
Multiplies the provided Cartesian componentwise by the provided scalar.
|
static Cartesian2 |
Matrix2.multiplyByVector(Matrix2 matrix,
Cartesian2 cartesian,
Cartesian2 result)
Computes the product of a matrix and a column vector.
|
static Cartesian2 |
Cartesian2.multiplyComponents(Cartesian2 left,
Cartesian2 right,
Cartesian2 result)
Computes the componentwise product of two Cartesians.
|
static Cartesian2 |
Cartesian2.negate(Cartesian2 cartesian,
Cartesian2 result)
Negates the provided Cartesian.
|
static Cartesian2 |
Cartesian2.normalize(Cartesian2 cartesian,
Cartesian2 result)
Computes the normalized form of the supplied Cartesian.
|
static Cartesian2 |
Transforms.pointToWindowCoordinates(Matrix4 modelViewProjectionMatrix,
Matrix4 viewportTransformation,
Cartesian3 point)
Transform a point from model coordinates to window coordinates.
|
static Cartesian2 |
Transforms.pointToWindowCoordinates(Matrix4 modelViewProjectionMatrix,
Matrix4 viewportTransformation,
Cartesian3 point,
Cartesian2 result)
Transform a point from model coordinates to window coordinates.
|
Cartesian2 |
TilingScheme.positionToTileXY(Cartographic position,
int level)
Calculates the tile x, y coordinates of the tile containing a given cartographic position.
|
Cartesian2 |
TilingScheme.positionToTileXY(Cartographic position,
int level,
Cartesian2 result)
Calculates the tile x, y coordinates of the tile containing a given cartographic position.
|
static Cartesian2 |
Cartesian2.subtract(Cartesian2 left,
Cartesian2 right,
Cartesian2 result)
Computes the componentwise difference of two Cartesians.
|
static Cartesian2 |
Cartesian2.UNIT_X()
An immutable Cartesian2 instance initialized to (1.0, 0.0).
|
static Cartesian2 |
Cartesian2.UNIT_Y()
An immutable Cartesian2 instance initialized to (0.0, 1.0).
|
static Cartesian2 |
Cartesian2.unpack(com.google.gwt.core.client.JsArrayNumber array)
Retrieves an instance from a packed array.
|
static Cartesian2 |
Cartesian2.unpack(com.google.gwt.core.client.JsArrayNumber array,
int startingIndex,
Cartesian2 result)
Retrieves an instance from a packed array.
|
static Cartesian2[] |
Cartesian2.unpackArray(com.google.gwt.core.client.JsArrayNumber array,
Cartesian2[] result)
Unpacks an array of cartesian components into and array of Cartesian2s.
|
static Cartesian2 |
Cartesian2.ZERO()
An immutable Cartesian2 instance initialized to (0.0, 0.0).
|
Modifier and Type | Method and Description |
---|---|
static Cartesian2 |
Cartesian2.abs(Cartesian2 cartesian,
Cartesian2 result)
Computes the absolute value of the provided Cartesian.
|
static Cartesian2 |
Cartesian2.add(Cartesian2 left,
Cartesian2 right,
Cartesian2 result)
Computes the componentwise sum of two Cartesians.
|
static double |
Cartesian2.angleBetween(Cartesian2 left,
Cartesian2 right)
Returns the angle, in radians, between the provided Cartesians.
|
Cartesian2 |
Cartesian2.clone(Cartesian2 result)
Duplicates this Cartesian2 instance.
|
static Cartesian2 |
Cartesian2.clone(Cartesian2 cartesian,
Cartesian2 result)
Duplicates a Cartesian2 instance.
|
static Cartesian2 |
Intersections2D.computeLineSegmentLineSegmentIntersection(double x00,
double y00,
double x01,
double y01,
double x10,
double y10,
double x11,
double y11,
Cartesian2 result)
Compute the intersection between 2 line segments
|
static double |
Cartesian2.distance(Cartesian2 left,
Cartesian2 right)
Computes the distance between two points.
|
static double |
Cartesian2.distanceSquared(Cartesian2 left,
Cartesian2 right)
Computes the squared distance between two points.
|
static Cartesian2 |
Cartesian2.divideByScalar(Cartesian2 cartesian,
double scalar,
Cartesian2 result)
Divides the provided Cartesian componentwise by the provided scalar.
|
static Cartesian2 |
Cartesian2.divideComponents(Cartesian2 left,
Cartesian2 right,
Cartesian2 result)
Computes the componentwise quotient of two Cartesians.
|
static double |
Cartesian2.dot(Cartesian2 left,
Cartesian2 right)
Computes the dot (scalar) product of two Cartesians.
|
Cartesian2 |
Cartesian2.equals(Cartesian2 right)
Compares this Cartesian against the provided Cartesian componentwise and returns true if they are equal, false otherwise.
|
static boolean |
Cartesian2.equals(Cartesian2 left,
Cartesian2 right)
Compares the provided Cartesians componentwise and returns true if they are equal, false otherwise.
|
static boolean |
Cartesian2.equalsEpsilon(Cartesian2 left,
Cartesian2 right,
double relativeEpsilon,
double absoluteEpsilon)
Compares the provided Cartesians componentwise and returns true if they pass an absolute or relative tolerance test, false otherwise.
|
boolean |
Cartesian2.equalsEpsilon(Cartesian2 right,
double relativeEpsilon,
double absoluteEpsilon)
Compares this Cartesian against the provided Cartesian componentwise and returns true if they pass an absolute or
relative tolerance test, false otherwise.
|
static BoundingRectangle |
BoundingRectangle.expand(BoundingRectangle rectangle,
Cartesian2 point)
Computes a bounding rectangle by enlarging the provided rectangle until it contains the provided point.
|
static BoundingRectangle |
BoundingRectangle.expand(BoundingRectangle rectangle,
Cartesian2 point,
BoundingRectangle result)
Computes a bounding rectangle by enlarging the provided rectangle until it contains the provided point.
|
static Cartesian2 |
Cartesian2.fromArray(double[] array,
Cartesian2 result)
Creates a Cartesian2 from two consecutive elements in an array.
|
static Cartesian2 |
Cartesian2.fromArray(double[] array,
int startingIndex,
Cartesian2 result)
Creates a Cartesian2 from two consecutive elements in an array.
|
static Cartesian2 |
Cartesian2.fromArray(com.google.gwt.core.client.JsArrayNumber array,
Cartesian2 result)
Creates a Cartesian2 from two consecutive elements in an array.
|
static Cartesian2 |
Cartesian2.fromArray(com.google.gwt.core.client.JsArrayNumber array,
int startingIndex,
Cartesian2 result)
Creates a Cartesian2 from two consecutive elements in an array.
|
static Cartesian2 |
Cartesian2.fromCartesian3(Cartesian3 cartesian,
Cartesian2 result)
Creates a Cartesian2 instance from an existing Cartesian3.
|
static Cartesian2 |
Cartesian2.fromCartesian4(Cartesian4 cartesian,
Cartesian2 result)
Creates a Cartesian2 instance from an existing Cartesian4.
|
static Rectangle |
Rectangle.fromCartesianArray(Cartesian2[] cartesians)
Creates the smallest possible Rectangle that encloses all positions in the provided array.
|
static Rectangle |
Rectangle.fromCartesianArray(Cartesian2[] cartesians,
Ellipsoid ellipsoid)
Creates the smallest possible Rectangle that encloses all positions in the provided array.
|
static Rectangle |
Rectangle.fromCartesianArray(Cartesian2[] cartesians,
Ellipsoid ellipsoid,
Rectangle result)
Creates the smallest possible Rectangle that encloses all positions in the provided array.
|
static Cartesian2 |
Cartesian2.fromElements(double x,
double y,
Cartesian2 result)
Creates a Cartesian2 instance from x and y coordinates.
|
static BoundingRectangle |
BoundingRectangle.fromPoints(Cartesian2[] positions)
Computes a bounding rectangle enclosing the list of 2D points.
|
static BoundingRectangle |
BoundingRectangle.fromPoints(Cartesian2[] positions,
BoundingRectangle result)
Computes a bounding rectangle enclosing the list of 2D points.
|
static Matrix2 |
Matrix2.fromScale(Cartesian2 scale)
Computes a Matrix2 instance representing a non-uniform scale.
|
static Matrix2 |
Matrix2.fromScale(Cartesian2 scale,
Matrix2 result)
Computes a Matrix2 instance representing a non-uniform scale.
|
static Cartesian2 |
Matrix2.getColumn(Matrix2 matrix,
int index,
Cartesian2 result)
Retrieves a copy of the matrix column at the provided index as a Cartesian2 instance.
|
Cartesian2 |
PerspectiveFrustum.getPixelDimensions(double drawingBufferWidth,
double drawingBufferHeight,
double distance,
Cartesian2 result)
Returns the pixel's width and height in meters.
|
Cartesian2 |
OrthographicOffCenterFrustum.getPixelDimensions(double drawingBufferWidth,
double drawingBufferHeight,
double distance,
Cartesian2 result)
Returns the pixel's width and height in meters.
|
Cartesian2 |
PerspectiveOffCenterFrustum.getPixelDimensions(double drawingBufferWidth,
double drawingBufferHeight,
double distance,
Cartesian2 result)
Returns the pixel's width and height in meters.
|
Cartesian2 |
OrthographicFrustum.getPixelDimensions(double drawingBufferWidth,
double drawingBufferHeight,
double distance,
Cartesian2 result)
Returns the pixel's width and height in meters.
|
static Cartesian2 |
Matrix2.getRow(Matrix2 matrix,
int index,
Cartesian2 result)
Retrieves a copy of the matrix row at the provided index as a Cartesian2 instance.
|
static Cartesian2 |
Matrix2.getScale(Matrix2 matrix,
Cartesian2 result)
Extracts the non-uniform scale assuming the matrix is an affine transformation.
|
static Cartesian2 |
Cartesian2.lerp(Cartesian2 start,
Cartesian2 end,
double t,
Cartesian2 result)
Computes the linear interpolation or extrapolation at t using the provided cartesians.
|
static double |
Cartesian2.magnitude(Cartesian2 cartesian)
Computes the Cartesian's magnitude (length).
|
static double |
Cartesian2.magnitudeSquared(Cartesian2 cartesian)
Computes the provided Cartesian's squared magnitude.
|
static Cartesian2 |
Cartesian2.maximumByComponent(Cartesian2 first,
Cartesian2 second,
Cartesian2 result)
Compares two Cartesians and computes a Cartesian which contains the maximum components of the supplied Cartesians.
|
static double |
Cartesian2.maximumComponent(Cartesian2 cartesian)
Computes the value of the maximum component for the supplied Cartesian.
|
static Cartesian2 |
Cartesian2.minimumByComponent(Cartesian2 first,
Cartesian2 second,
Cartesian2 result)
Compares two Cartesians and computes a Cartesian which contains the minimum components of the supplied Cartesians.
|
static double |
Cartesian2.minimumComponent(Cartesian2 cartesian)
Computes the value of the minimum component for the supplied Cartesian.
|
static Cartesian2 |
Cartesian2.mostOrthogonalAxis(Cartesian2 cartesian,
Cartesian2 result)
Returns the axis that is most orthogonal to the provided Cartesian.
|
static Cartesian2 |
Cartesian2.multiplyByScalar(Cartesian2 cartesian,
double scalar,
Cartesian2 result)
Multiplies the provided Cartesian componentwise by the provided scalar.
|
static Matrix2 |
Matrix2.multiplyByScale(Matrix2 matrix,
Cartesian2 scale,
Matrix2 result)
Computes the product of a matrix times a (non-uniform) scale, as if the scale were a scale matrix.
|
static Cartesian2 |
Matrix2.multiplyByVector(Matrix2 matrix,
Cartesian2 cartesian,
Cartesian2 result)
Computes the product of a matrix and a column vector.
|
static Cartesian2 |
Cartesian2.multiplyComponents(Cartesian2 left,
Cartesian2 right,
Cartesian2 result)
Computes the componentwise product of two Cartesians.
|
static Cartesian2 |
Cartesian2.negate(Cartesian2 cartesian,
Cartesian2 result)
Negates the provided Cartesian.
|
static Cartesian2 |
Cartesian2.normalize(Cartesian2 cartesian,
Cartesian2 result)
Computes the normalized form of the supplied Cartesian.
|
static com.google.gwt.core.client.JsArrayNumber |
Cartesian2.pack(Cartesian2 value,
com.google.gwt.core.client.JsArrayNumber array,
int startingIndex)
Stores the provided instance into the provided array.
|
static com.google.gwt.core.client.JsArrayNumber |
Cartesian2.packArray(Cartesian2[] array,
com.google.gwt.core.client.JsArrayNumber result)
Flattens an array of Cartesian2s into and array of components.
|
static Cartesian2 |
Transforms.pointToWindowCoordinates(Matrix4 modelViewProjectionMatrix,
Matrix4 viewportTransformation,
Cartesian3 point,
Cartesian2 result)
Transform a point from model coordinates to window coordinates.
|
Cartesian2 |
TilingScheme.positionToTileXY(Cartographic position,
int level,
Cartesian2 result)
Calculates the tile x, y coordinates of the tile containing a given cartographic position.
|
static Matrix2 |
Matrix2.setColumn(Matrix2 matrix,
int index,
Cartesian2 cartesian,
Matrix2 result)
Computes a new matrix that replaces the specified column in the provided matrix with the provided Cartesian2 instance.
|
static Matrix2 |
Matrix2.setRow(Matrix2 matrix,
int index,
Cartesian2 cartesian,
Matrix2 result)
Computes a new matrix that replaces the specified row in the provided matrix with the provided Cartesian2 instance.
|
static Cartesian2 |
Cartesian2.subtract(Cartesian2 left,
Cartesian2 right,
Cartesian2 result)
Computes the componentwise difference of two Cartesians.
|
static Cartesian2 |
Cartesian2.unpack(com.google.gwt.core.client.JsArrayNumber array,
int startingIndex,
Cartesian2 result)
Retrieves an instance from a packed array.
|
static Cartesian2[] |
Cartesian2.unpackArray(com.google.gwt.core.client.JsArrayNumber array,
Cartesian2[] result)
Unpacks an array of cartesian components into and array of Cartesian2s.
|
Modifier and Type | Field and Description |
---|---|
Cartesian2 |
TouchMoveEvent.endPosition |
Cartesian2 |
MouseMoveEvent.endPosition |
Cartesian2 |
MouseDblClickEvent.position |
Cartesian2 |
TouchStartEvent.position |
Cartesian2 |
MouseClickEvent.position |
Cartesian2 |
MouseDownEvent.position |
Cartesian2 |
MouseUpEvent.position |
Cartesian2 |
TouchClickEvent.position |
Cartesian2 |
Touch2StartEvent.position1 |
Cartesian2 |
Touch2StartEvent.position2 |
Cartesian2 |
TouchMoveEvent.startPosition |
Cartesian2 |
MouseMoveEvent.startPosition |
Modifier and Type | Field and Description |
---|---|
Cartesian2 |
WebMercatorTilingSchemeOptions.rectangleNortheastInMeters
optional The northeast corner of the rectangle covered by the tiling scheme, in meters.
|
Cartesian2 |
WebMercatorTilingSchemeOptions.rectangleSouthwestInMeters
The southwest corner of the rectangle covered by the tiling scheme, in meters.
|
Modifier and Type | Field and Description |
---|---|
Cartesian2 |
Cesium3DTilePointFeature.backgroundPadding
Gets or sets the background padding of the text for this feature.
|
Cartesian2 |
Label.backgroundPadding
Gets or sets the background padding, in pixels, of this label.
|
Cartesian2 |
Label.pixelOffset
Gets or sets the pixel offset in screen space from the origin of this label.
|
Cartesian2 |
Billboard.pixelOffset
Gets or sets the pixel offset in screen space from the origin of this billboard.
|
Modifier and Type | Method and Description |
---|---|
Cartesian2 |
Scene.cartesianToCanvasCoordinates(Cartesian3 position)
Transforms a position in cartesian coordinates to canvas coordinates.
|
Cartesian2 |
Scene.cartesianToCanvasCoordinates(Cartesian3 position,
Cartesian2 result)
Transforms a position in cartesian coordinates to canvas coordinates.
|
Cartesian2 |
Billboard.computeScreenSpacePosition(Scene scene)
Computes the screen-space position of the billboard's origin, taking into account eye and pixel offsets.
|
Cartesian2 |
Label.computeScreenSpacePosition(Scene scene,
Cartesian2 result)
Computes the screen-space position of the label's origin, taking into account eye and pixel offsets.
|
Cartesian2 |
Billboard.computeScreenSpacePosition(Scene scene,
Cartesian2 result)
Computes the screen-space position of the billboard's origin, taking into account eye and pixel offsets.
|
Modifier and Type | Method and Description |
---|---|
Cartesian2 |
Scene.cartesianToCanvasCoordinates(Cartesian3 position,
Cartesian2 result)
Transforms a position in cartesian coordinates to canvas coordinates.
|
Cartesian2 |
Label.computeScreenSpacePosition(Scene scene,
Cartesian2 result)
Computes the screen-space position of the label's origin, taking into account eye and pixel offsets.
|
Cartesian2 |
Billboard.computeScreenSpacePosition(Scene scene,
Cartesian2 result)
Computes the screen-space position of the billboard's origin, taking into account eye and pixel offsets.
|
PickedObject[] |
Scene.drillPick(Cartesian2 windowPosition)
Returns a list of objects, each containing a `primitive` property, for all primitives at a particular
window coordinate position.
|
PickedObject[] |
Scene.drillPick(Cartesian2 windowPosition,
double limit)
Returns a list of objects, each containing a `primitive` property, for all primitives at a particular
window coordinate position.
|
PickedObject[] |
Scene.drillPick(Cartesian2 windowPosition,
double limit,
int width)
Returns a list of objects, each containing a `primitive` property, for all primitives at a particular
window coordinate position.
|
PickedObject[] |
Scene.drillPick(Cartesian2 windowPosition,
double limit,
int width,
int height)
Returns a list of objects, each containing a `primitive` property, for all primitives at a particular
window coordinate position.
|
Ray |
Camera.getPickRay(Cartesian2 windowPosition)
Create a ray from the camera position through the pixel at windowPosition in world coordinates.
|
Ray |
Camera.getPickRay(Cartesian2 windowPosition,
Ray result)
Create a ray from the camera position through the pixel at windowPosition in world coordinates.
|
PickedObject |
Scene.pick(Cartesian2 windowPosition)
Returns an object with a `primitive` property that contains the first (top) primitive in the scene at a particular
window coordinate or undefined if nothing is at the location.
|
Cartesian3 |
Camera.pickEllipsoid(Cartesian2 windowPosition)
Pick an ellipsoid or map.
|
Cartesian3 |
Camera.pickEllipsoid(Cartesian2 windowPosition,
Ellipsoid ellipsoid)
Pick an ellipsoid or map.
|
Cartesian3 |
Camera.pickEllipsoid(Cartesian2 windowPosition,
Ellipsoid ellipsoid,
Cartesian3 result)
Pick an ellipsoid or map.
|
Cartesian3 |
Scene.pickPosition(Cartesian2 windowPosition)
Returns the cartesian position reconstructed from the depth buffer and window position.
|
Cartesian3 |
Scene.pickPosition(Cartesian2 windowPosition,
Cartesian3 result)
Returns the cartesian position reconstructed from the depth buffer and window position.
|
Modifier and Type | Field and Description |
---|---|
Cartesian2 |
LabelOptions.backgroundPadding
Gets or sets the background padding, in pixels, of this label.
|
Cartesian2 |
Cesium3DTilesetOptions.imageBasedLightingFactor
Scales the diffuse and specular image-based lighting from the earth, sky, atmosphere and star skybox.
|
Cartesian2 |
ModelOptions.imageBasedLightingFactor
Scales diffuse and specular image-based lighting from the earth, sky, atmosphere and star skybox.
|
Cartesian2 |
BillboardOptions.pixelOffset
Gets or sets the pixel offset in screen space from the origin of this billboard.
|
Cartesian2 |
LabelOptions.pixelOffset
Gets or sets the pixel offset in screen space from the origin of this label.
|
Cartesian2[] |
DiscardMissingTileImagePolicyOptions.pixelsToCheck
An array of Cartesian2 pixel positions to compare against the missing image.
|
Modifier and Type | Field and Description |
---|---|
Cartesian2 |
ParticleSystem.maximumImageSize
Sets the maximum bound, width by height, below which to randomly scale the particle image's dimensions in pixels.
|
Cartesian2 |
ParticleSystem.minimumImageSize
Sets the minimum bound, width by height, above which to randomly scale the particle image's dimensions in pixels.
|
Cartesian2 |
Particle.size
The dimensions of particles in pixels.
|
Modifier and Type | Field and Description |
---|---|
Cartesian2 |
ParticleSystemOptions.imageSize
If set, overrides the minimumImageSize and maximumImageSize inputs that scale the particle image's dimensions in pixels.
|
Cartesian2 |
ParticleSystemOptions.maximumImageSize
Sets the maximum bound, width by height, below which to randomly scale the particle image's dimensions in pixels.
|
Cartesian2 |
ParticleSystemOptions.minimumImageSize
Sets the minimum bound, width by height, above which to randomly scale the particle image's dimensions in pixels.
|
Cartesian2 |
ParticleOptions.size
The dimensions of particles in pixels.
|
Copyright © 2019. All rights reserved.