diff --git a/core/src/commonMain/kotlin/world/phantasmal/core/math/Math.kt b/core/src/commonMain/kotlin/world/phantasmal/core/math/Math.kt index 4ba78343..7cecdd69 100644 --- a/core/src/commonMain/kotlin/world/phantasmal/core/math/Math.kt +++ b/core/src/commonMain/kotlin/world/phantasmal/core/math/Math.kt @@ -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 diff --git a/web/src/main/kotlin/world/phantasmal/web/questEditor/models/QuestEntityModel.kt b/web/src/main/kotlin/world/phantasmal/web/questEditor/models/QuestEntityModel.kt index dd684e4c..3c7df3a6 100644 --- a/web/src/main/kotlin/world/phantasmal/web/questEditor/models/QuestEntityModel.kt +++ b/web/src/main/kotlin/world/phantasmal/web/questEditor/models/QuestEntityModel.kt @@ -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>( 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), ) } }