Ejemplo n.º 1
0
Mat4f Camera::GetMatrix()
{
    Mat4f m;
    m.SetColumn(3,m_Position);
    m=m_Quat.AsMatrix()*m;
    return m;
}