Difference between revisions of "LlRotBetween"

From Second Life Wiki
Jump to navigation Jump to search
Line 21: Line 21:
|deprecated
|deprecated
|cat1=Math/3D
|cat1=Math/3D
|cat2
|cat2=rotations
|cat3
|cat3
|cat4
|cat4
}}
}}

Revision as of 21:13, 19 September 2007

Summary

Function: rotation llRotBetween( vector start, vector end );

Returns a rotation that is the rotation between a vector pointing to start and one pointing to end

• vector start
• vector end

Specification

start and end are 2 positions which are relative to the origin of the prim the script is in. Be sure these are relative positions, not world positions, so if you have world positions, subtract the prim origin first.

Also remember that these are positions that define directions, so for example if you want to find a rotation to get from forward (along the positive X axis) to some point 45 degrees to the right, a possible set of vectors would be <1, 0, 0> and <1,-1,0>. The first defines the forward direction, the second the 45 degrees to the right (remember the right hand rule says +Y is to the left).

Examples

llRotBetween (<1, 0, 0>, <0, -1, 0>) will return <0.00000, 0.00000, -1.57080> (-1.57080 is 45 degrees in radians)

llRotBetween (<0, 0, 0>, <0, -1, 0>) will return <0.00000, 0.00000, 0.00000> because <0, 0, 0> doesn't define a direction.

See Also

Functions

•  llAngleBetween

Deep Notes

Search JIRA for related Issues

Signature

function rotation llRotBetween( vector start, vector end );