Meter2Feet: Difference between revisions
Jump to navigation
Jump to search
Huney Jewell (talk | contribs) Added new example |
|||
| Line 13: | Line 13: | ||
<div style="padding: 0.5em;"> | <div style="padding: 0.5em;"> | ||
<pre> | <pre> | ||
string Meter2Feet (float meter) | string Meter2Feet( float meter ) | ||
{ | { | ||
float fraction = meter / 0.3047999984375; // Compute feet | |||
integer feet = (integer)fraction; | |||
float fraction = meter / 0. | |||
integer feet = | |||
fraction = (fraction - feet) * 12; // Compute inches | fraction = (fraction - feet) * 12; // Compute inches | ||
integer inches = | integer inches = (integer)fraction; | ||
fraction = llRound((fraction - inches) * 16); // Compute 1/16 inches | fraction = llRound((fraction - inches) * 16); // Compute 1/16 inches | ||
string strFraction = "\""; | string strFraction = "\""; | ||
if (fraction != 0) // show fraction value only if not zero | if (fraction != 0) // show fraction value only if not zero | ||
strFraction = " " + (string)(integer)fraction + "/16" | strFraction = " " + (string)llAbs((integer)fraction) + "/16\""; | ||
return ( | |||
return ((string)feet + "' " + (string)llAbs(inches) + strFraction); | |||
} | } | ||
</pre> | </pre> | ||
| Line 38: | Line 33: | ||
<div id="box"> | <div id="box"> | ||
19.5071999 | |||
== Example == | == Example == | ||
<div style="padding: 0.5em;"> | <div style="padding: 0.5em;"> | ||
Revision as of 08:03, 12 September 2007
| LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Categorized Library | Tutorials |
Specification
string Meter2Feet( float meter )
{
float fraction = meter / 0.3047999984375; // Compute feet
integer feet = (integer)fraction;
fraction = (fraction - feet) * 12; // Compute inches
integer inches = (integer)fraction;
fraction = llRound((fraction - inches) * 16); // Compute 1/16 inches
string strFraction = "\"";
if (fraction != 0) // show fraction value only if not zero
strFraction = " " + (string)llAbs((integer)fraction) + "/16\"";
return ((string)feet + "' " + (string)llAbs(inches) + strFraction);
}
19.5071999
Example
Trivial example to listen to any chat from the object owner for meter values and respond feet/inch value.
string Meter2Feet (float meter)
{
integer negative = FALSE;
if (meter < 0)
{ // Use only positive value to simplify the maths
negative = TRUE;
meter *= -1;
}
float fraction = meter / 0.3048; // Compute feet
integer feet = llFloor(fraction);
fraction = (fraction - feet) * 12; // Compute inches
integer inches = llFloor(fraction);
fraction = llRound((fraction - inches) * 16); // Compute 1/16 inches
string strFeet = (string)feet;
if (negative) // Reallocate sign to ensure showing up in case feet value is zero
strFeet = "-" + strFeet;
string strFraction = "\"";
if (fraction != 0) // show fraction value only if not zero
strFraction = " " + (string)(integer)fraction + "/16" + strFraction;
return (strFeet + "' " + (string)inches + strFraction);
}
default
{
state_entry()
{
llOwnerSay("Enter: [m]");
llListen(0, "", llGetOwner(), "");
}
listen(integer _chan, string _str, key _id, string _msg)
{
float meter = (float)_msg;
llOwnerSay(Meter2Feet(meter));
}
}