(float start, float stop, float amount)
| 172 | } |
| 173 | |
| 174 | public static float lerp(float start, float stop, float amount) |
| 175 | { |
| 176 | return start + (stop - start) * amount; |
| 177 | } |
| 178 | |
| 179 | public static float norm(float start, float stop, float value) |
| 180 | { |
nothing calls this directly
no outgoing calls
no test coverage detected