sin looked up in a table
(float p_76126_0_)
| 40 | * sin looked up in a table |
| 41 | */ |
| 42 | public static float sin(float p_76126_0_) |
| 43 | { |
| 44 | return fastMath ? SIN_TABLE_FAST[(int)(p_76126_0_ * radToIndex) & 4095] : SIN_TABLE[(int)(p_76126_0_ * 10430.378F) & 65535]; |
| 45 | } |
| 46 | |
| 47 | /** |
| 48 | * cos looked up in the sin table with the appropriate offset |
no outgoing calls