diff options
author | nea <nea@nea.moe> | 2023-06-02 02:42:42 +0200 |
---|---|---|
committer | nea <nea@nea.moe> | 2023-06-02 02:42:42 +0200 |
commit | add5eb6a4a1c8228e789f90ca100fc92f12baaea (patch) | |
tree | f77bc531e40208efa79b32e5b5d8c28d076aa31f /src/main/kotlin/moe/nea/firmament/util/FirmFormatters.kt | |
parent | 3d76538cef0cb150415ef5db734c80fb0dec7e85 (diff) | |
download | Firmament-add5eb6a4a1c8228e789f90ca100fc92f12baaea.tar.gz Firmament-add5eb6a4a1c8228e789f90ca100fc92f12baaea.tar.bz2 Firmament-add5eb6a4a1c8228e789f90ca100fc92f12baaea.zip |
Improve floating point number formatting
Diffstat (limited to 'src/main/kotlin/moe/nea/firmament/util/FirmFormatters.kt')
-rw-r--r-- | src/main/kotlin/moe/nea/firmament/util/FirmFormatters.kt | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/main/kotlin/moe/nea/firmament/util/FirmFormatters.kt b/src/main/kotlin/moe/nea/firmament/util/FirmFormatters.kt new file mode 100644 index 0000000..73ef121 --- /dev/null +++ b/src/main/kotlin/moe/nea/firmament/util/FirmFormatters.kt @@ -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") + } + +} |