OsVecDistSquare

From OpenSimulator

Revision as of 15:30, 24 November 2020 by Djphil (Talk | contribs)

Jump to: navigation, search
float osVecDistSquare(vector a, vector b)
returns the square of norm of vector or distance vector (a - b), when expensive square root is not needed.
Threat Level No threat level specified
Permissions No permissions specified
Extra Delay 0 seconds
Example(s)
//
// osVecDistSquare Script Example
//
 
default
{
    state_entry()
    {
        vector input_a = <1.0, 2.0, 3.0>;
        vector input_b = <3.0, 2.0, 1.0>;
        llSay(PUBLIC_CHANNEL, "The square root of the distance between " + (string)input_a + " and " + (string)input_b + " is : " + (string)osVecDistSquare(input_a, input_b) + ".");
    }
}


See Also

Personal tools
General
About This Wiki