//pixilang (2007) - http://pixi.gif.ru //plasma_hires NightRadio start_timer(0) start: tt = get_timer(0) / 64 y = -90 y_start: x = -160 x_start: v1 = csin( x * 2 + tt ) + ccos( y - tt ) v2 = csin( x - tt ) + ccos( y + tt ) v = v1 * v2 v / 128 v + tt //dot( x, y, get_color( v,v,v ) ) dot( x, y, get_color( sin(v+128) + 128, sin(v+64) + 128, sin(v) + 128 ) ) x + 1 if x < 160 { go x_start } y + 1 if y < 90 { go y_start } f = fps print( "fps: $f", -78, -78, #FFFFFF ) frame(0) go start