X-Git-Url: http://git.megacz.com/?p=org.ibex.core.git;a=blobdiff_plain;f=tests%2Ftest.t;fp=tests%2Ftest.t;h=30d7cc16ddf87435462e109167cf0143a228e17f;hp=162aa969b7efe3b259df68288565e6cbc1a64d87;hb=a458ca5997446f473a50a57cc41acdc68514cfd8;hpb=62910022be653ba915d21ed2f6d154b6e8624fe1 diff --git a/tests/test.t b/tests/test.t index 162aa96..30d7cc1 100644 --- a/tests/test.t +++ b/tests/test.t @@ -1,17 +1,39 @@ - + ibex.ui.frame = thisbox; - + + + + + + + + + + + + + + + // this thread makes things spin. var rot = 0; ibex.thread = function(f) { while(true) { ibex.thread.sleep(100); $blue.transform = "rotate(" + rot + ")"; - $blue.x = 100; - $blue.y = 100; + $blue.x = 200; + $blue.y = 200; + + $green.transform = "rotate(" + (rot) + ")"; + //$white.transform = "rotate(" + (2 * rot) + ")"; + $purple.transform = "rotate(" + (3 * rot) + ")"; + $greenx.transform = "rotate(" + (-1 * rot) + ")"; + //$whitex.transform = "rotate(" + (-2 * rot) + ")"; + $purplex.transform = "rotate(" + (-3 * rot) + ")"; + rot += 5; } } - +