(float a)
| 464 | return (in * (float) Math.PI) / 180.0f; |
| 465 | } |
| 466 | public static float anglemod(float a) { |
| 467 | return (float) (shortratio) * ((int) (a / (shortratio)) & 65535); |
| 468 | } |
| 469 | public static int ANGLE2SHORT(float x) { |
| 470 | return ((int) ((x) / shortratio) & 65535); |
| 471 | } |
no outgoing calls
no test coverage detected