text
stringlengths
0
8.81k
An object that was passed to mergeSort.
Returns:
Returns a negative value if a is less than b,
a positive value if a is greater than b, or
0 if a is equal to b.
Example:
function compareNumbers(a, b, userDefinedObject) {
return a - b;
}
UniformSpecifier
engine/Source/Scene/Model/CustomShader.js 11
An object describing a uniform, its type, and an initial value
Properties:
Name
Type
Description
type
UniformType
The Glsl type of the uniform.
value
boolean
|
number
|
Cartesian2
|
Cartesian3
|
Cartesian4
|
Matrix2
|
Matrix3
|
Matrix4
|
TextureUniform
The initial value of the uniform
Experimental
This feature is using part of the 3D Tiles spec that is not final and is subject to change without Cesium's standard deprecation policy.
WebGLOptions
engine/Source/Renderer/Context.js 438