Maths library V1!
Additions
This adds 5 functions to the game through commands:
- Sin
- Cos
- Square Root
- Factorial
- Powers (Positive Integers Only)
There is also a constants scoreboards which contains -10 through 10, -100, 100 and pi
How do they work?
Sin and Cos
This perfroms both the sin and cos functions on any angle that is in degrees at once.
It provides up to 3 decimal places of precision.
/function math:sin_cos {angle:30}
This will output both the sin and cos to the scoreboard math.cos_sin under the cos and sin players.
To use this you will need to divide the result by 1000.
Square Root
This performs a square root operation on any integer, with up to 2 decimal places of precision. The actual function returns the nearest integer and the result with decimals is put into the math:temp sqrt.output_decimal
storage.
/function math:sqrt {number:16}
this will output the square root of 16.
Factorial
Takes the factrorial of any number and returns it.
/function math:factorial {number:10}
will take the factorial of 10.
Power
Gets any number raised to any positive integer power.
/function math:power {number:2, power:3}
will rasie 2 to the power of 3