Difference between revisions of "LlVecDist"

From Second Life Wiki
Jump to navigation Jump to search
Line 1: Line 1:
{{lowercase|llVecDist}}
{{LSLFunctionAll
__NOTOC__
|func=llVecDist
 
|func_id=14
{| width="100%"
|func_sleep=0.0
|-
|func_energy=10.0
|<div id="box">
|func_footnote
== [[LSL_Type_float|float]] llVecDist( [[LSL_Type_vector|vector]] vec_1, [[LSL_Type_vector|vector]] vec_2); ==
|p1_type=vector
<div style="padding: 0.5em">
|p1_name=vec_a
* vec_1 - Any valid vector value
|p1_desc=Any valid vector
* vec_2 - Any valid vector value
|p2_type=vector
</div>
|p2_name=vec_b
</div>
|p2_desc=Any valid vector
|-
|p3_type|p3_name|p3_desc
|
|p4_type|p4_name|p4_desc
<div id="box">
|p5_type|p5_name|p5_desc
 
|p6_type|p6_name|p6_desc
== Specification ==
|p7_type|p7_name|p7_desc
<div style="padding: 0.5em">
|p8_type|p8_name|p8_desc
Returns the 3D distance between vec_1 and vec_2
|p9_type|p9_name|p9_desc
{|  
|p10_type|p10_name|p10_desc
|-
|p11_type|p11_name|p11_desc
| [[LSL_Energy|Energy]]:
|p12_type|p12_name|p12_desc
| 10.0
|return_type=vector
|-
|return_text=that is the distance between vec_a and vec_b (llVecMag(vec_a - vec_b)).
| [[LSL_Sleep|Sleep]]:
|spec
| 0.0
|caveats
|-
|examples=
| [[LSL_Function_ID|Function ID]]:
| 14
|}
</div>
</div>
|-
|
<div id="box">
 
== Caveats ==
<div style="padding: 0.5em">
</div>
</div>
 
|-
|
<div id="box">
== Examples ==
<div style="padding: 0.5em">
<lsl>
<lsl>
default {
default {
Line 50: Line 31:
     {
     {
         vector input_1 = <1.0,2.0,3.0>;
         vector input_1 = <1.0,2.0,3.0>;
         vector input_2 = <1.0,2.0,3.0>;
         vector input_2 = <3.0,2.0,1.0>;
         llSay(0,"The normalize of " + (string)input + " is: "+(string)llVecDist(input_1, input_2) );
         llSay(0,"The normalize of " + (string)input + " is: "+(string)llVecDist(input_1, input_2) );
     }
     }
}
}
</lsl>
</lsl>
</div>
|helpers
</div>
|related={{LSLG|llVecMag}}<br/>{{LSLG|llVecDist}}
|-
|also
|
|notes
<div id="box">
}}
== Helper Functions ==
<div style="padding: 0.5em">
<lsl>
</lsl>
</div>
</div>
|-
|
<div id="box">
== See Also ==
<div style="padding: 0.5em">
</div>
</div>
|-
|
<div id="box">
== Notes ==
<div style="padding: 0.5em">
</div>
</div>
|}


[[Category:LSL_Functions]]
[[Category:LSL_Functions]]
[[Category:LSL_Math]]
[[Category:LSL_Math]]

Revision as of 20:57, 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 llVecDist( vector vec_a, vector vec_b );

Returns a vector that is the distance between vec_a and vec_b (llVecMag(vec_a - vec_b)).

• vector vec_a Any valid vector
• vector vec_b Any valid vector

Examples

<lsl> default {

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

}

</lsl>

Deep Notes

Search JIRA for related Issues

Signature

function vector llVecDist( vector vec_a, vector vec_b );