Improve floating point number formatting

This commit is contained in:
nea
2023-06-02 02:42:42 +02:00
parent 3d76538cef
commit add5eb6a4a
4 changed files with 30 additions and 18 deletions

View File

@@ -0,0 +1,15 @@
package moe.nea.firmament.util
import com.google.common.math.IntMath.pow
import kotlin.math.absoluteValue
object FirmFormatters {
fun toString(double: Double, fractionalDigits: Int): String {
val long = double.toLong()
val δ = (double - long).absoluteValue
val μ = pow(10, fractionalDigits)
val digits = (μ * δ).toInt().toString().padStart(fractionalDigits, '0').trimEnd('0')
return long.toString() + (if (digits.isEmpty()) "" else ".$digits")
}
}