Added jump LibreOffice Calc table. Corrected jump height on different speeds

This commit is contained in:
2021-04-07 23:09:08 +03:00
parent 5f3f69fc31
commit b73916ac03
3 changed files with 20 additions and 6 deletions
+6
View File
@@ -0,0 +1,6 @@
Function JUMPHEIGHT(speed, hover)
JUMPHEIGHT = 0
FOR i = 1 TO hover
JUMPHEIGHT = JUMPHEIGHT + speed/8 * ((COS(2*Pi*i/(2*hover)) + 1)/2.5 + 0.2) * (hover - i + 1)
NEXT
End Function