View this PageEdit this PageUploads to this PageHistory of this PageTop of the SwikiRecent ChangesSearch the SwikiHelp Guide

constant dawn


//________________constant dawn (jr 2000)
(
	var w, a, b, c;
	w = GUIWindow.new("", Rect.newBy( 0, 0, 1200, 1200 ))
		.backColor_(rgb(0, 0, 0));
{ arg synth;
	a = SinOsc.kr(0.03, 2pi.rand, 50, 100);
	b = SinOsc.kr(0.035, 2pi.rand, 50, 100);
	c = SinOsc.kr(0.02247, 2pi.rand, 50, 100);
	
	synth.trepeat(0, 1/25, {arg i;  w.backColor = Color.new( a. poll, b.poll, c.poll )});
	
	Plug.ar(0)
	}.play;
w.close;
)



Links to this Page