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

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

// Automatically generated - do not modify!

@file:Suppress(
    "NON_EXTERNAL_DECLARATION_IN_INAPPROPRIATE_FILE",
)

package cesium

/**
 * A particle emitted by a [ParticleSystem].
 * @see Online Documentation
 */
@JsName("\$cesium__Particle")
external class Particle(options: ConstructorOptions) {
    /**
     * @property [mass] The mass of the particle in kilograms.
     *   Default value - `1.0`
     * @property [position] The initial position of the particle in world coordinates.
     *   Default value - [Cartesian3.ZERO]
     * @property [velocity] The velocity vector of the particle in world coordinates.
     *   Default value - [Cartesian3.ZERO]
     * @property [life] The life of the particle in seconds.
     *   Default value - [Number.MAX_VALUE]
     * @property [image] The URI, HTMLImageElement, or HTMLCanvasElement to use for the billboard.
     * @property [startColor] The color of a particle when it is born.
     *   Default value - [Color.WHITE]
     * @property [endColor] The color of a particle when it dies.
     *   Default value - [Color.WHITE]
     * @property [startScale] The scale of the particle when it is born.
     *   Default value - `1.0`
     * @property [endScale] The scale of the particle when it dies.
     *   Default value - `1.0`
     * @property [imageSize] The dimensions, width by height, to scale the particle image in pixels.
     *   Default value - [Cartesian2(1.0, 1.0)][Cartesian2]
     */
    interface ConstructorOptions {
        var mass: Double?
        var position: Cartesian3?
        var velocity: Cartesian3?
        var life: Double?
        var image: Any?
        var startColor: Color?
        var endColor: Color?
        var startScale: Double?
        var endScale: Double?
        var imageSize: Cartesian2?
    }

    /**
     * The mass of the particle in kilograms.
     * @see Online Documentation
     */
    var mass: Double

    /**
     * The positon of the particle in world coordinates.
     * @see Online Documentation
     */
    var position: Cartesian3

    /**
     * The velocity of the particle in world coordinates.
     * @see Online Documentation
     */
    var velocity: Cartesian3

    /**
     * The life of the particle in seconds.
     * @see Online Documentation
     */
    var life: Double

    /**
     * The image to use for the particle.
     * @see Online Documentation
     */
    var image: Any

    /**
     * The color of the particle when it is born.
     * @see Online Documentation
     */
    var startColor: Color

    /**
     * The color of the particle when it dies.
     * @see Online Documentation
     */
    var endColor: Color

    /**
     * the scale of the particle when it is born.
     * @see Online Documentation
     */
    var startScale: Double

    /**
     * The scale of the particle when it dies.
     * @see Online Documentation
     */
    var endScale: Double

    /**
     * The dimensions, width by height, to scale the particle image in pixels.
     * @see Online Documentation
     */
    var imageSize: Cartesian2

    /**
     * Gets the age of the particle in seconds.
     * @see Online Documentation
     */
    var age: Double

    /**
     * Gets the age normalized to a value in the range [0.0, 1.0].
     * @see Online Documentation
     */
    var normalizedAge: Double
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy