Packable

Static interface for types which can store their values as packed elements in an array. These methods and properties are expected to be defined on a constructor function.
See:

Members

static Cesium.Packable.packedLength : number

The number of elements used to pack the object into an array.

Methods

static Cesium.Packable.pack(value, array, startingIndex)

Stores the provided instance into the provided array.
Name Type Default Description
value * The value to pack.
array Array.<number> The array to pack into.
startingIndex number 0 optional The index into the array at which to start packing the elements.

static Cesium.Packable.unpack(array, startingIndex, result)object

Retrieves an instance from a packed array.
Name Type Default Description
array Array.<number> The packed array.
startingIndex number 0 optional The starting index of the element to be unpacked.
result object optional The object into which to store the result.
Returns:
The modified result parameter or a new Object instance if one was not provided.
Need help? The fastest way to get answers is from the community and team on the Cesium Forum.