@cesium/engine
Version:
CesiumJS is a JavaScript library for creating 3D globes and 2D maps in a web browser without a plugin.
28 lines (23 loc) • 488 B
JavaScript
// @ts-check
/**
* Defines how material properties are applied along a path.
*
* @enum {number}
*/
const PathMode = {
/**
* The material is applied to the entire path as a whole.
* @type {number}
* @constant
*/
WHOLE: 0,
/**
* The material is applied in portions based on temporal position information,
* using interval-based material properties.
* @type {number}
* @constant
*/
PORTIONS: 1,
};
Object.freeze(PathMode);
export default PathMode;