All Downloads are FREE. Search and download functionalities are using the official Maven repository.

main.cesium.BillboardVisualizer.kt Maven / Gradle / Ivy

// Automatically generated - do not modify!

@file:JsModule("cesium")

package cesium

/**
 * A [Visualizer] which maps [Entity.billboard] to a [Billboard].
 * @see Online Documentation
 *
 * @constructor
 * @param [entityCluster] The entity cluster to manage the collection of billboards and optionally cluster with other entities.
 * @param [entityCollection] The entityCollection to visualize.
 * @see Online Documentation
 */
external class BillboardVisualizer(
    entityCluster: EntityCluster,
    entityCollection: EntityCollection,
) : Visualizer {
    /**
     * Updates the primitives created by this visualizer to match their
     * Entity counterpart at the given time.
     * @param [time] The time to update to.
     * @return This function always returns true.
     * @see Online Documentation
     */
    override fun update(time: JulianDate): Boolean

    /**
     * Returns true if this object was destroyed; otherwise, false.
     * @return True if this object was destroyed; otherwise, false.
     * @see Online Documentation
     */
    override fun isDestroyed(): Boolean

    /**
     * Removes and destroys all primitives created by this instance.
     * @see Online Documentation
     */
    override fun destroy()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy