Compatibility
Minecraft: Java Edition
Platforms
75% of ad revenue goes to creators
Support creators and Modrinth ad-free with Modrinth+Creators
Details
What is this?
Thsi datapack adds some mathematical functions to minecraft that are useful for commands. They have applications such as distance formulas and getting the side lengths of triangles.
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