Talk:LlVecNorm: Difference between revisions
Jump to navigation
Jump to search
Created page with '== minimum magnitude == The vectors passed to llVecNorm() seem to need a minimum magnitude to be calculated correctly. <lsl>default { state_entry(){ llOwnerSay((...' |
|||
| (One intermediate revision by one other user not shown) | |||
| Line 11: | Line 11: | ||
Object: <0.00000, 0.00000, 0.00000></pre> | Object: <0.00000, 0.00000, 0.00000></pre> | ||
Caveat or bug? --[[File:Zai_signature.png|45px|link=User:Zai Lynch]] <sup><small>([[User talk:Zai Lynch|talk]]|[[Special:Contributions/Zai Lynch|contribs]])</small></sup> 14:16, 10 August 2009 (UTC) | Caveat or bug? --[[File:Zai_signature.png|45px|link=User:Zai Lynch]] <sup><small>([[User talk:Zai Lynch|talk]]|[[Special:Contributions/Zai Lynch|contribs]])</small></sup> 14:16, 10 August 2009 (UTC) | ||
:Bug. -- '''[[User:Strife_Onizuka|Strife]]''' <sup><small>([[User talk:Strife_Onizuka|talk]]|[[Special:Contributions/Strife_Onizuka|contribs]])</small></sup> 02:28, 11 August 2009 (UTC) | |||
::OK, reported @ {{JIRA|SVC-4711}}. --[[File:Zai_signature.png|45px|link=User:Zai Lynch]] <sup><small>([[User talk:Zai Lynch|talk]]|[[Special:Contributions/Zai Lynch|contribs]])</small></sup> 10:25, 11 August 2009 (UTC) | |||
Latest revision as of 02:25, 11 August 2009
minimum magnitude
The vectors passed to llVecNorm() seem to need a minimum magnitude to be calculated correctly. <lsl>default {
state_entry(){
llOwnerSay((string)llVecNorm(<0.0,0.0,0.0000002>));
llOwnerSay((string)llVecNorm(<0.0,0.0,0.0000001>));
}
}</lsl> gives
Object: <0.00000, 0.00000, 1.00000> Object: <0.00000, 0.00000, 0.00000>
Caveat or bug? --
(talk|contribs) 14:16, 10 August 2009 (UTC)