This commit is contained in:
Anuken
2020-08-15 18:54:57 -04:00
parent 0cc5945331
commit 2526224820
8 changed files with 24 additions and 203 deletions

View File

@@ -8,9 +8,9 @@ public enum UnaryOp{
abs("abs", Math::abs),
log("log", Math::log),
log10("log10", Math::log10),
sin("sin", Math::sin),
cos("cos", Math::cos),
tan("tan", Math::tan),
sin("sin", d -> Math.sin(d * 0.017453292519943295D)),
cos("cos", d -> Math.cos(d * 0.017453292519943295D)),
tan("tan", d -> Math.tan(d * 0.017453292519943295D)),
floor("floor", Math::floor),
ceil("ceil", Math::ceil),
sqrt("sqrt", Math::sqrt),