Removed floorMod function that's now in the Kotlin standard library.

This commit is contained in:
Daan Vanden Bosch 2021-05-11 19:50:14 +02:00
parent fab1f90975
commit d130ff4bce
2 changed files with 3 additions and 11 deletions

View File

@ -14,10 +14,3 @@ fun radToDeg(rad: Double): Double = rad * TO_DEG
* Converts degrees to radians.
*/
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

View File

@ -1,6 +1,5 @@
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.QuestEntity
import world.phantasmal.observable.cell.Cell
@ -184,9 +183,9 @@ abstract class QuestEntityModel<Type : EntityType, Entity : QuestEntity<Type>>(
private fun floorModEuler(euler: Euler): Euler =
euler.set(
floorMod(euler.x, 2 * PI),
floorMod(euler.y, 2 * PI),
floorMod(euler.z, 2 * PI),
euler.x.mod(2 * PI),
euler.y.mod(2 * PI),
euler.z.mod(2 * PI),
)
}
}