Files
orx/orx-noise/src/main/kotlin/MathUtils.kt
Edwin Jakobs 149a7fd183 changes
2019-01-26 21:24:58 +01:00

6 lines
132 B
Kotlin

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