Difference between revisions of "LlVecNorm"

From Second Life Wiki
Jump to navigation Jump to search
 
Line 1: Line 1:
{{LSLFunctionAll
|func=llVecNorm
|func_id=12
|func_sleep=0.0
|func_energy=10.0
|func_footnote
|p1_type=vector
|p1_name=vec
|p1_desc
|p2_type|p2_name|p2_desc
|p3_type|p3_name|p3_desc
|p4_type|p4_name|p4_desc
|p5_type|p5_name|p5_desc
|p6_type|p6_name|p6_desc
|p7_type|p7_name|p7_desc
|p8_type|p8_name|p8_desc
|p9_type|p9_name|p9_desc
|p10_type|p10_name|p10_desc
|p11_type|p11_name|p11_desc
|p12_type|p12_name|p12_desc
|return_type=vector
|return_text=that is the normal of the vector (val / {{LSLG|llVecMag}}(val)).
|spec
|caveats
|examples=
<lsl>
default {
    state_entry()
    {
        vector input = <1.0,2.0,3.0>;
        llSay(0,"The normal of "+(string)input+" is: "+(string)llVecNorm(input) );
    }
}
</lsl>
|helpers
|related={{LSLG|llVecMag}}<br/>{{LSLG|llVecDist}}
|also
|notes
}}
[[Category:LSL_Functions]]
[[Category:LSL_Math]]
{{lowercase|llVecNorm}}
{{lowercase|llVecNorm}}
__NOTOC__
__NOTOC__

Revision as of 20:53, 25 January 2007

   Outdated templated used

Please change the template from 'LSLFunctionAll' to 'LSL_Function' (just replace 'LSLFunctionAll' with 'LSL_Function', do this after fixing any other erorr messages.

Summary

Function: vector llVecNorm( vector vec );

Returns a vector that is the normal of the vector (val / llVecMag(val)).

• vector vec

Examples

<lsl> default {

   state_entry()
   {
       vector input = <1.0,2.0,3.0>;
       llSay(0,"The normal of "+(string)input+" is: "+(string)llVecNorm(input) );
   }

}

</lsl>

Deep Notes

Search JIRA for related Issues

Signature

function vector llVecNorm( vector vec );


The correct title of this article is llVecNorm. The initial letter is shown capitalized due to technical restrictions.


vector llVecNorm( vector vec);

  • vec - Any valid vector value

Specification

Returns the vec normalized

Energy: 10.0
Sleep: 0.0
Function ID: 13

Caveats

Examples

<lsl> default {

   state_entry()
   {
       vector input = <1.0,2.0,3.0>;
       llSay(0,"The normalize of "+(string)input+" is: "+(string)llVecNorm(input) );
   }

} </lsl>

Helper Functions

<lsl> </lsl>

See Also

Notes