This site has been permanently archived. The content on this site was last updated in 2019.
Degrees of freedom
Stay organized with collections
Save and categorize content based on your preferences.
Degrees of freedom (DoF) refer to the number of basic ways a rigid object
can move through 3D space. There are six total degrees of freedom. Three
correspond to rotational movement around the x, y, and z axes, commonly termed
pitch, yaw, and roll. The other three correspond to translational movement along
those axes, which can be thought of as moving forward or backward, moving left
or right, and moving up or down.
VR headsets and input devices are generally 3DoF or 6DoF.
3DoF means we can track rotational motion but not translational. For the
headset, that means we can track whether the user has turned their head left or
right, tilted it up or down, or pivoted left and right.
6DoF means we can additionally track translational motion. That means we can
track whether the user has moved forward, backward, laterally, or vertically.
For example:
- Daydream View features a 3DoF headset and 3DoF controller, commonly referred to as "3.3".
- Daydream Standalone features a 6DoF headset and 3DoF controllers, commonly referred to as "6.3".
We recommend that developers target 3.3 and 6.3 in a single app.
Key development differences
- 3DoF head-tracking means you can only track rotational movement.
- 6DoF head-tracking means you can track both position and rotation.
- In 3DoF you need to use a neck model to simulate realistic movement, which Daydream provides.
- In 6DoF a neck model is not necessary because the actual position and rotation of the head are known.
- When you use 6DoF tracking and WorldSense has to fall-back to 3DoF,
WorldSense will handle the neck model implementation for your app so you don't have to write it in yourself.
- When updating from 3DoF to 6DoF, if you wrote a custom neck model, you may need to remove it. If you used the Daydream neck model it will be turned off automatically.
All rights reserved. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-10-09 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-10-09 UTC."],[[["Degrees of Freedom (DoF) in VR refer to the ways a rigid body can move, encompassing 3 rotational (pitch, yaw, roll) and 3 translational (forward/backward, left/right, up/down) movements."],["VR devices are categorized as 3DoF (rotational tracking only) or 6DoF (rotational and translational tracking)."],["Developers are encouraged to build VR applications supporting both 3.3 (3DoF headset & controller) and 6.3 (6DoF headset & 3DoF controller) configurations for broader compatibility."],["6DoF head tracking eliminates the need for a neck model, providing realistic head movement, while 3DoF relies on neck models for simulating movement."],["When transitioning to 6DoF, custom neck models might need removal, as Daydream automatically handles neck model implementation in 3DoF fallback scenarios for 6DoF apps."]]],["Degrees of freedom (DoF) define movement in 3D space: 3DoF tracks rotation (pitch, yaw, roll), while 6DoF also tracks translation (forward/backward, left/right, up/down). VR devices use these, like Daydream View (3.3: 3DoF headset & controller) and Daydream Standalone (6.3: 6DoF headset, 3DoF controllers). 6DoF head tracking tracks both position and rotation, unlike 3DoF. WorldSense handles the neck model for 6DoF devices, and the default neck model is turned off when updating from 3DoF to 6DoF.\n"]]