Name: Hyperbolic Slot
Image:

Description: Two rods rotate around and pass through two hyperbolic slots.
Creator: Patio Plasma
Location: http://slurl.com/secondlife/Sploland/144/35/26/
Graphics:
Lessons:
Transparency
In photoshop patterns can be created with transparency. If these are saved as 24 bit .png files they can be imported into Secodn Lfe for $10.
Here is the master .png file, sized to 512 x 512

Touch the rods to start them rotating, touch the rods to stop rotation.
integer running;
default
{
state_entry()
{
running=TRUE;
llTargetOmega(<0,0,1>,1,1);
}
touch_start(integer total_number)
{
if (running==TRUE)
{
running=FALSE;
llTargetOmega(<0,0,1>,1,0);
}
else
{
running=TRUE;
llTargetOmega(<0,0,1>,1,1);
}
}
}
Comments:
I should set a timer to start it rotating again after it has been stopped by being touched, perhaps after 5 minutes.
The rods are red for visibility.
There are 4 slots, two pairs at right angles.
|
Patio Plasma |
|
10 December 2008 |