LlVecMag - Second Life Wiki

LlVecMag

From Second Life Wiki

Jump to: navigation, search

Function: float llVecMag( vector vec );

12 Function ID
0.0 Delay
10.0 Energy

Returns a float that is the magnitude of the vector (the undirected nonnegative distance from vec to <0.0, 0.0, 0.0>). It can be evaluated by doing llSqrt(vec.x*vec.x + vec.y*vec.y + vec.z*vec.z).

• vector vec

Examples

 
default {
    state_entry()
    {
        vector input = <1.0,2.0,3.0>;
        llSay(0,"The magnitude of "+(string)input+" is "+(string)llVecMag(input) + ".");
    }
}
 

See Also

Functions

•  llVecNorm The vector normal
•  llVecDist The distance between two vectors