| 550 | |
| 551 | template<typename T, typename T1, typename T2> |
| 552 | inline T clip_range(T a, T1 minv, T2 maxv) { |
| 553 | if (a < minv) return minv; |
| 554 | if (a > maxv) return maxv; |
| 555 | return a; |
| 556 | } |
| 557 | |
| 558 | /** |
| 559 | * Returns the amount of milliseconds elapsed since the UNIX epoch. |
no outgoing calls