Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re: Rotate a 3D vector

by FoxtrotUniform (Prior)
on Oct 17, 2004 at 23:58 UTC ( [id://400006]=note: print w/replies, xml ) Need Help??


in reply to Rotate a 3D vector

Here's the short version: multiply your source vector by a 3d rotation matrix. Zaxo's snippet is nifty, but not quite sufficient as it doesn't do matrix math.

The extra complexity that comes with moving from 2d rotations to 3d rotations is the fact that, in 3d, you don't really have a canonical axis to rotate around. In the x-y plane, when you do a rotation by r radians, you pretty much have to rotate around the z axis. In 3d space, you can rotate around the x, y, or z axis, or around an arbitrary vector (if that gives you problems, think of it as rotating around several canonical axes at once). So you can't easily describe a 3d rotation with a single parameter; you basically need a matrix (or a quaternion, but let's not go there).

--
Yours in pedantry,
F o x t r o t U n i f o r m

"Lines of code don't matter as long as I'm not writing them." -- merlyn

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://400006]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others perusing the Monastery: (8)
As of 2024-04-23 10:45 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found