opround thing (#10805)

This commit is contained in:
1ue999
2025-05-14 13:03:12 -04:00
committed by GitHub
parent 4e84bbc547
commit f99153e2ef
+1
View File
@@ -41,6 +41,7 @@ public enum LogicOp{
log10("log10", Math::log10), log10("log10", Math::log10),
floor("floor", Math::floor), floor("floor", Math::floor),
ceil("ceil", Math::ceil), ceil("ceil", Math::ceil),
round("round", Math::round),
sqrt("sqrt", Math::sqrt), sqrt("sqrt", Math::sqrt),
rand("rand", d -> GlobalVars.rand.nextDouble() * d), rand("rand", d -> GlobalVars.rand.nextDouble() * d),