25namespace utility::graphic
27 std::ostream &operator<<(std::ostream &stream,
const RayF &ray)
29 stream <<
"RayF(origin: " << ray.
getOrigin()
34 std::ostream &operator<<(std::ostream &stream,
const RayD &ray)
36 stream <<
"RayD(origin: " << ray.
getOrigin()
Geometric ray with arithmetic component type and fixed dimension.
math::Vector< RayComponentType, 3 > getOrigin() const
Get the ray origin.
math::Vector< RayComponentType, 3 > getDirection(void) const
Get the ray direction.
Geometric ray template declaration.