| 2070 | |
| 2071 | template<typename T> |
| 2072 | inline constexpr auto bounding_box(T&& t) |
| 2073 | { |
| 2074 | return envelope_r(std::forward<T>(t)); |
| 2075 | } |
| 2076 | |
| 2077 | template<typename T> |
| 2078 | inline constexpr auto bounding_circle(T&& t) |
nothing calls this directly
no test coverage detected