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

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

// Automatically generated - do not modify!

package cesium

external interface CameraOrientation {
    var heading: Double
    var pitch: Double
    var roll: Double
}

fun CameraOrientation(
    heading: Double,
    pitch: Double,
    roll: Double,
): CameraOrientation {
    val o: CameraOrientation = js("({})")
    o.heading = heading
    o.pitch = pitch
    o.roll = roll
    return o
}    




© 2015 - 2024 Weber Informatics LLC | Privacy Policy