| 123456789101112131415161718 |
- //
- // clamp.h
- // limit
- //
- // Created by Sam Jaffe on 12/9/23.
- //
- #pragma once
- #include <algorithm>
- #include <utility>
- namespace math {
- template <typename T>
- T const & clamp(T const & value, T const & min, T const & max) {
- return std::max(min, std::min(value, max));
- }
- }
|