This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Vectormath https://github.com/erwincoumans/sce_vectormath | |
class Ray | |
{ | |
public: | |
Ray(); | |
public: | |
Vectormath::Aos::Vector3 m_pos; | |
Vectormath::Aos::Vector3 m_dir; | |
Vectormath::Aos::Vector3 m_invDir; // 1.0f / m_dir per elem | |
float m_min; |