mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 15:28:29 +08:00
Removed floorMod function that's now in the Kotlin standard library.
This commit is contained in:
parent
fab1f90975
commit
d130ff4bce
@ -14,10 +14,3 @@ fun radToDeg(rad: Double): Double = rad * TO_DEG
|
|||||||
* Converts degrees to radians.
|
* Converts degrees to radians.
|
||||||
*/
|
*/
|
||||||
fun degToRad(deg: Double): Double = deg * TO_RAD
|
fun degToRad(deg: Double): Double = deg * TO_RAD
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the floored modulus of its arguments. The computed value will have the same sign as the
|
|
||||||
* [divisor].
|
|
||||||
*/
|
|
||||||
fun floorMod(dividend: Double, divisor: Double): Double =
|
|
||||||
((dividend % divisor) + divisor) % divisor
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
package world.phantasmal.web.questEditor.models
|
package world.phantasmal.web.questEditor.models
|
||||||
|
|
||||||
import world.phantasmal.core.math.floorMod
|
|
||||||
import world.phantasmal.lib.fileFormats.quest.EntityType
|
import world.phantasmal.lib.fileFormats.quest.EntityType
|
||||||
import world.phantasmal.lib.fileFormats.quest.QuestEntity
|
import world.phantasmal.lib.fileFormats.quest.QuestEntity
|
||||||
import world.phantasmal.observable.cell.Cell
|
import world.phantasmal.observable.cell.Cell
|
||||||
@ -184,9 +183,9 @@ abstract class QuestEntityModel<Type : EntityType, Entity : QuestEntity<Type>>(
|
|||||||
|
|
||||||
private fun floorModEuler(euler: Euler): Euler =
|
private fun floorModEuler(euler: Euler): Euler =
|
||||||
euler.set(
|
euler.set(
|
||||||
floorMod(euler.x, 2 * PI),
|
euler.x.mod(2 * PI),
|
||||||
floorMod(euler.y, 2 * PI),
|
euler.y.mod(2 * PI),
|
||||||
floorMod(euler.z, 2 * PI),
|
euler.z.mod(2 * PI),
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user