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

godot.util.Utils.kt Maven / Gradle / Ivy

There is a newer version: 0.10.0-4.3.0
Show newest version
@file:JvmName("Utils")
@file:Suppress("NOTHING_TO_INLINE")

package godot.util

import godot.core.ObjectID
import java.util.*

typealias RealT = Double
typealias NaturalT = Int

typealias VoidPtr = Long

const val nullptr: VoidPtr = 0L
val nullObjectID = ObjectID(-1L)

inline fun Number.toRealT(): RealT = this.toDouble()
inline fun Double.toRealT(): RealT = this
inline fun Float.toRealT(): RealT = this.toDouble()
inline fun Number.toNaturalT(): NaturalT = this.toInt()
inline fun Long.toNaturalT(): NaturalT = this.toInt()
inline fun Int.toNaturalT(): NaturalT = this




© 2015 - 2024 Weber Informatics LLC | Privacy Policy