Files
orx/orx-noise/src/commonMain/kotlin/MathUtils.kt
2021-06-24 13:31:27 +02:00

6 lines
127 B
Kotlin

package org.openrndr.extra.noise
fun Double.fastFloor(): Int {
return if (this >= 0) this.toInt() else this.toInt() - 1
}