209 /// @brief Checks to see if a ray intersects with an AABB.
210 /// @param Box The AABB to check for intersection.
211 /// @param Cast The casted ray to check for intersection.
212 /// @return Returns a std::pair containing whether or not the ray hit, and if it did also a ray that is the subsection of the casted ray that went through the AABB.
214 /// @brief Checks to see if a ray intersects with a Sphere.
215 /// @param Ball The Sphere to check for intersection.
216 /// @param Cast The casted ray to check for intersection.
217 /// @return Returns a std::pair containing whether or not the ray hit, and if it did also a ray that is the subsection of the casted ray that went through the Sphere.