(float radians)
| 167 | } |
| 168 | |
| 169 | public static float degrees(float radians) |
| 170 | { |
| 171 | return radians * RAD_TO_DEG; |
| 172 | } |
| 173 | |
| 174 | public static float lerp(float start, float stop, float amount) |
| 175 | { |
nothing calls this directly
no outgoing calls
no test coverage detected