Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. QQuaternion how to rotate only x and y??
Qt 6.11 is out! See what's new in the release blog

QQuaternion how to rotate only x and y??

Scheduled Pinned Locked Moved Unsolved General and Desktop
1 Posts 1 Posters 593 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • QT-static-prgmQ Offline
    QT-static-prgmQ Offline
    QT-static-prgm
    wrote on last edited by
    #1

    Hi,

    i want to rotate only in x and y direction, but it does not work that good.

    float pitch, yaw, roll;
    m_rotation.getEulerAngles(&pitch, &yaw, &roll);
    pitch = (diff.y() * 0.5 + pitch);
    yaw = (diff.x() * 0.5 + yaw);
    std::cout << pitch << " - " << yaw << std::endl;
    m_rotation = QQuaternion::fromEulerAngles(pitch, yaw, roll);
    

    yaw works fine, but pitch does not. it is limited to [-90,90]. But if i move the mouse not only up/down, but a little sideway, it moves over that limit but does crazy things like jumping somewhere. And most times i get nan from pitch and yaw and the model is not displayed anymore.

    Any ideas why this happens, or how to rotate only in x/y direction using Quaternion??

    1 Reply Last reply
    0

    • Login

    • Login or register to search.
    • First post
      Last post
    0
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Get Qt Extensions
    • Unsolved