iPhone Orientation Expressed as Rotation - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T19:11:44Z http://stackoverflow.com/feeds/question/1010674 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1010674/iphone-orientation-expressed-as-rotation 1 iPhone Orientation Expressed as Rotation ISDi 2009-06-18T03:43:37Z 2009-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#1010805 1 Answer by MatrixFrog for iPhone Orientation Expressed as Rotation MatrixFrog 2009-06-18T04:43:41Z 2009-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#1016964 0 Answer by Andrew Pouliot for iPhone Orientation Expressed as Rotation Andrew Pouliot 2009-06-19T08:48:37Z 2009-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>