You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 30, 2024. It is now read-only.
e.g. round(1.54) would normally result in 2, round(1.54, 1) would be 1.5 with the addition
comming from python programming it would help a lot :)
More accurate results from custom functions:
having the results be rounded to 2 dp but with a press of alt or ctrl it clanges the tooltip to a unrounded result
results from functions in nested functions should also use the exact value(I didnt test if the mod already dose this or not)
e.g. vol_of_cylinder(r;length)= area_of_circle(r)*length and area_of_circle(radius)= (radius^2)*pi
having the vol_of_cylinder function use the exact value from the function area_of_circle would lead to more accurate results
also maybe a way to copy the exact/rounded result to clipboard would be nice
Multiple results from custom function?
e.g. portal linking for nether
link(x;y;z)= x/8 ; y ; z/8 calling this function would result in three diffrent values being returned
so link(400;50;400) --> tab --> 50, 50, 50
idk how to seperate the different calcuations/results cause ',' can't be used so maybe ';' can be used for it??
fyi I'm using this for a school project where i do my maths homework in minecraft. It's a competition where who can do there homework in the craziest way possible one of my friends if doing it all in machine code so idk if I'll beat him