Home | History | Annotate | Download | only in PoseProvider

Lines Matching refs:rotation

26     /** Index of the quaternion X-value in the rotation array. */
28 /** Index of the quaternion Y-value in the rotation array. */
30 /** Index of the quaternion Z-value in the rotation array. */
32 /** Index of the quaternion W-value in the rotation array. */
70 public PoseData(float[] translation, float[] rotation, long timestamp){
72 mRotation[0] = rotation[0];
73 mRotation[1] = rotation[1];
74 mRotation[2] = rotation[2];
75 mRotation[3] = rotation[3];
82 * Convenience function to get the rotation casted as an array of floats.
84 * @return The pose rotation.