Difference between revisions of "LlGetObjectMass"

From Second Life Wiki
Jump to navigation Jump to search
(The SL unit of mass is the Linden, no way you would know that. Articles are supposed to be written in the thrid person.)
Line 2: Line 2:
|func_id=295|func_sleep=0.0|func_energy=10.0
|func_id=295|func_sleep=0.0|func_energy=10.0
|func=llGetObjectMass
|func=llGetObjectMass
|return_type=float|p1_type=key|p1_name=id|p1_desc=Agent or object
|return_type=float|p1_type=key|p1_name=id|p1_desc=Avatar or object in the sim
|func_footnote
|func_footnote
|func_desc
|func_desc
|return_text=that is the mass of '''id'''
|return_text=that is the mass of '''id'''
|spec
|spec
|caveats
|caveats=
*Returns zero if '''id''' is not found in the sim.
|constants
|constants
|examples=<pre>
|examples=
This one of my favorite, because it is a example of usless function.
Every avatar, regardless of size, shape, attachments, sex or species, the avatar mass is always 1.954922 Lindens.
Every avatar, regardless how tall he is, or how much soup he has got from his mama, weight 19.177782 N. (1.954922 Kg)
<pre>
Try it ;
default
default
{
{
  touch(integer n)
    touch(integer n)
  {
    {
  llSay(0, llDetectedName(0) + " your weight is " + (string)(llGetObjectMass( llDetectedKey(0) ) * 9.81) + " N ");
        llSay(0, llDetectedName(0) + " your mass is " + (string)llGetObjectMass( llDetectedKey(0)) + " Lindens.");
  }
    }
}
}//Anylyn Hax 15:02, 28 July 2007 (PDT)
Because 50% of my students don't know difference between mass and weight, I whould like to explain it here again.
</pre>
Mass [m] is the quantity of materia that a avatar has inside itself, and is expressed in Kg (Kilogramms).
Mass [m] is the quantity of materia that a avatar has inside itself, and is expressed in Kg (Kilogramms).
The Weight [G] is a Force, expressed in N (Newtons), and it is m * g, where g is the the gravitational atraction.
The Weight [G] is a Force, expressed in N (Newtons), and it is m * g, where g is the the gravitational atraction (g = 9.81 on Earth).
On the Earth the g is 9.81 m/s², on the Moon 1.63 m/s², on Venus 8.60 m/s², on Mars 3.70 m/s² and on the Sun 274 m/s².
</pre>
Anylyn Hax 15:02, 28 July 2007 (PDT)
|helpers
|helpers
|also_functions=
|also_functions=
{{LSL DefineRow||{{LSLG|llGetMass}}|Gets the current object mass.}}
{{LSL DefineRow||[[llGetMass]]|Gets the current object mass.}}
|also_tests
|also_tests
|also_events
|also_events

Revision as of 06:12, 29 July 2007

Summary

Function: float llGetObjectMass( key id );

Returns a float that is the mass of id

• key id Avatar or object in the sim

Caveats

  • Returns zero if id is not found in the sim.
All Issues ~ Search JIRA for related Bugs

Examples

Every avatar, regardless of size, shape, attachments, sex or species, the avatar mass is always 1.954922 Lindens.

default
{
    touch(integer n)
    {
        llSay(0, llDetectedName(0) + " your mass is " + (string)llGetObjectMass( llDetectedKey(0)) + " Lindens.");
    }
}//Anylyn Hax 15:02, 28 July 2007 (PDT)

Mass [m] is the quantity of materia that a avatar has inside itself, and is expressed in Kg (Kilogramms).

The Weight [G] is a Force, expressed in N (Newtons), and it is m * g, where g is the the gravitational atraction (g = 9.81 on Earth).

See Also

Functions

•  llGetMass Gets the current object mass.

Deep Notes

Search JIRA for related Issues

Signature

function float llGetObjectMass( key id );