(float minStart, float minStop, float maxStart, float maxStop, float value)
| 182 | } |
| 183 | |
| 184 | public static float map(float minStart, float minStop, float maxStart, float maxStop, float value) |
| 185 | { |
| 186 | return maxStart + (maxStart - maxStop) * ((value - minStart) / (minStop - minStart)); |
| 187 | } |
| 188 | |
| 189 | public static int random(int howbig) |
| 190 | { |
nothing calls this directly
no outgoing calls
no test coverage detected