2016-04-29 62 views
0

我的更新功能是围绕视图轴(滚动)添加旋转,随着时间的推移而增加。我只想改变偏航和俯仰部分。Quaterion第一人称风格相机

是我的计算错误还是浮点精度?

m_orientation是我的全球Quaterion进行最后的轮换。 Q是glm :: quat的类型。 V是GLM :: VEC3

return [this](glm::vec2 ls, glm::vec2 rs, double dTime) { 
    auto rightVec = m_orientation * V(1, 0, 0); 
    Q q1 = glm::angleAxis(-rs.x * (float)dTime, V(0,1,0)); // yaw 
    Q q2 = glm::angleAxis(rs.y * (float)dTime, rightVec); // pitch 

    auto roll = glm::roll(m_orientation); 
    printf("%f\n", roll); 

    m_orientation = q1 * m_orientation; 
    m_orientation = q2 * m_orientation; 


    m_position += m_orientation * V(1, 0, 0) * ls.x * (float)dTime * sensitivity; //sidewards 
    m_position += m_orientation * V(0, 0, -1) * ls.y * (float)dTime * sensitivity; //forwards 
    buildViewMatrix(); 
}; 

回答

0

用2解决改变

auto q2 = glm::angleAxis(rs.y * (float)dTime, V(1,0,0)); // pitch 
m_orientation = q1 * m_orientation * q2;