DynamicGeometryUpdater

new Cesium.DynamicGeometryUpdater()

Defines the interface for a dynamic geometry updater. A DynamicGeometryUpdateris responsible for handling visualization of a specific type of geometrythat needs to be recomputed based on simulation time.This object is never used directly by client code, but is instead created byGeometryUpdater implementations which contain dynamic geometry.This type defines an interface and cannot be instantiated directly.

Methods

destroy()

Destroys and resources used by the object. Once an object is destroyed, it should not be used.
Throws:
  • DeveloperError : This object was destroyed, i.e., destroy() was called.

isDestroyed()Boolean

Returns true if this object was destroyed; otherwise, false.
Returns:
True if this object was destroyed; otherwise, false.

update(time)

Updates the geometry to the specified time.
Name Type Description
time JulianDate The current time.