Difference between revisions of "User:Adicted Waco/Projects"

From Second Life Wiki
Jump to navigation Jump to search
m (Note About Source)
m (Moved A Script To A Seperate Page)
Line 2: Line 2:


== Projects In Progress==
== Projects In Progress==
<div style="padding: 0.5em">
<div>
<TABLE CELLSPACING=1 CELLPADDING=1 RULES=ALL BORDER=1>
<TABLE CELLSPACING=1 CELLPADDING=1 RULES=ALL BORDER=1>
<TR style="font-weight: 900">
<TR style="font-weight: 900">
Line 16: Line 16:
</TABLE>
</TABLE>
Notes:
Notes:
*Used - When I Need To Sort Out Some Projects When I Have Several Things To Do
*Priority - Lower Numbers Are More Important
*Priority - Lower Numbers Are More Important
</div>
</div>


<div style="padding: 0.5em">
<div>
== Script In Process ==
== Scripts ==
A Script That Converts A Hue To A RGB (Needs Work)
*[[User:Adicted_Waco/Projects/HSL2RGB|HSL2RGB]]
<lsl>
float hue_2_rgb(float temp1,float temp2,float temp3)
{
        if (temp3 < 0)
        {
                temp3 += 1;
        }
        if (temp3 > 1)
        {
                temp3 -= 1;
        }
        if (6.0*temp3 < 1)
        {
            return (temp1+(temp2-temp1)*6.0*temp3);
        }
        else if (2.0*temp3 < 1)
        {
            return (temp2);
        }
        else if (3.0*temp3 < 2)
        {
            return (temp1+(temp2-temp1)*((2.0/3.0)-temp3)*6.0);
        }
        else
        {
            return (temp1);
        }
}
default
{
    state_entry()
    {//Example Vales Are For Green = <0,1,0>
        float h = 120.0/360.0;
        float s = 100.0/100.0;
        float l = 50.0/100.0;
        float var_1;
        float var_2;
        vector Colour;
        if (s == 0)
        {
                Colour = <l, l, l>;
        }
        else
        {
            if (l < 0.5)
            {
                    var_2 = l * (1 + s);
            }
            else
            {
                    var_2 = (l + s) - (s * l);
            }
            var_1 = 2 * l - var_2;
            Colour = <
            hue_2_rgb(var_1,var_2,h + (1.0 / 3.0)),
            hue_2_rgb(var_1,var_2,h),
            hue_2_rgb(var_1,var_2,h - (1.0 / 3.0))>;
        }
        llOwnerSay((string)Colour);
    }
}
 
</lsl>
*Note: Converted From A PHP Script Found At http://serennu.com/colour/rgbtohsl.php
</div>
</div>
</div>
</div>

Revision as of 23:35, 31 March 2009

Projects In Progress

Priority Project Name Sub-Tasks



Notes:

  • Used - When I Need To Sort Out Some Projects When I Have Several Things To Do
  • Priority - Lower Numbers Are More Important

Scripts