iPhone Orientation Expressed as Rotation - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T19:11:44Zhttp://stackoverflow.com/feeds/question/1010674http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1010674/iphone-orientation-expressed-as-rotation1iPhone Orientation Expressed as RotationISDi2009-06-18T03:43:37Z2009-06-19T08:48:37Z
<p>Ola Folks,</p>
<pre><code> This might not be the right place for this. Let me know where I should post if I should post it elsewhere.
I want to get the orientation of the device. I am thinking I can use something like this:
float fAngleX = atan2(acceleration.y, acceleration.z);
float fAngleY = atan2(acceleration.x, acceleration.z);
float fAngleZ = atan2(acceleration.y, acceleration.x);
First, is my formula right?
Second, is this going to work for the device?
Third, I'm going back and forth about filtering out gravity. Any thoughts?
Lastly, is there a better way to get the devices orientation expressed as rotation for all three axis?
</code></pre>
<p>Thanx</p>
<p>-isdi-</p>
http://stackoverflow.com/questions/1010674/iphone-orientation-expressed-as-rotation/1010805#10108051Answer by MatrixFrog for iPhone Orientation Expressed as RotationMatrixFrog2009-06-18T04:43:41Z2009-06-18T04:43:41Z<p>To give the rotation of the device as three numbers like that, is actually ambiguous. This kind of thing can get quite confusing. I think this might be the best place to start: <a href="http://en.wikipedia.org/wiki/Euler_angles" rel="nofollow">http://en.wikipedia.org/wiki/Euler_angles</a></p>
http://stackoverflow.com/questions/1010674/iphone-orientation-expressed-as-rotation/1016964#10169640Answer by Andrew Pouliot for iPhone Orientation Expressed as RotationAndrew Pouliot2009-06-19T08:48:37Z2009-06-19T08:48:37Z<p>As long as you're careful you can use angles, though it would probably be way easier to use vectors directly.</p>
<p>You'll almost certainly want to do filtering; a simple low-pass would be great, but don't filter out gravity, as it <strong>is</strong> the orientation of the device :).</p>