15 #ifndef GEOMETRY__VECTOR3__HYPOT_HPP_
16 #define GEOMETRY__VECTOR3__HYPOT_HPP_
25 typename T,
typename U,
26 std::enable_if_t<std::conjunction_v<IsLikeVector3<T>, IsLikeVector3<U>>, std::nullptr_t> =
28 auto hypot(
const T & from,
const U & to)
30 return std::hypot(to.x - from.x, to.y - from.y, to.z - from.z);
auto hypot(const T &from, const U &to)
Definition: hypot.hpp:28
Definition: bounding_box.hpp:32