(float start, float stop, float value)
| 177 | } |
| 178 | |
| 179 | public static float norm(float start, float stop, float value) |
| 180 | { |
| 181 | return (value - start) / (stop - start); |
| 182 | } |
| 183 | |
| 184 | public static float map(float minStart, float minStop, float maxStart, float maxStop, float value) |
| 185 | { |
nothing calls this directly
no outgoing calls
no test coverage detected