-
Notifications
You must be signed in to change notification settings - Fork 2
Home
NOPEname edited this page Jun 22, 2020
·
12 revisions
Calculates square root of given number (output: integer, rounded down; uses Babylonian Methode: https://en.wikipedia.org/wiki/Methods_of_computing_square_roots#Babylonian_method)
Calculates sine of given number using a lookup table (input: degree wrapped into [0..360]; output: integer, scaled by 1,000,000,000)
Calculates cosine of given number like ../sin (passes modified input to ../sin)