[Bf-committers] Missing functions in bullet/LinearMath/SimdVector3.h

Stealth Apprentice stealthapprentice at yahoo.com
Fri Jan 13 08:59:55 CET 2006


It seems something like the below is missing from
bullet/LinearMath/SimdVector3.h, line 184

Could someone patch this in? This is one reason some
people can't build with a fresh get from CVS right
now.


    SIMD_FORCE_INLINE void setMin(SimdVector3& v)
    {
        m_x = v.m_x < m_x ? v.m_x : m_x;
        m_y = v.m_y < m_y ? v.m_y : m_y;
        m_z = v.m_z < m_z ? v.m_z : m_z;
    }

    SIMD_FORCE_INLINE void setMax(SimdVector3& v)
    {
        m_x = v.m_x > m_x ? v.m_x : m_x;
        m_y = v.m_y > m_y ? v.m_y : m_y;
        m_z = v.m_z > m_z ? v.m_z : m_z;
    }


__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 


More information about the Bf-committers mailing list