15 #ifndef GEOMETRY__VECTOR3__INNER_PRODUCT_HPP_
16 #define GEOMETRY__VECTOR3__INNER_PRODUCT_HPP_
25 typename T,
typename U,
26 std::enable_if_t<std::conjunction_v<IsLikeVector3<T>, IsLikeVector3<U>>, std::nullptr_t> =
30 return v0.x * v1.x + v0.y * v1.y + v0.z * v1.z;
auto innerProduct(const T &v0, const U &v1)
Definition: inner_product.hpp:28
Definition: bounding_box.hpp:32