Page 1 of 1

Box of white noise

Posted: Fri Jul 08, 2005 2:13 pm
by lagroue
Infinite but bordered, the last nihilistic tribute to square root of 2, in two rules.
(a few lines remains visible - consequences of rounding, I guess).

Code: Select all

startshape noise

rule noise {
	SQUARE { s 1.29289321881 }
	noise { x 1 r 90 s 0.707106781187 b 1}
	noise { x -1 r 90 s 0.707106781187 b -1}
}
rule noise {
	SQUARE { s 1.29289321881 }
	noise { x 1 r 90 s 0.707106781187 b -1}
	noise { x -1 r 90 s 0.707106781187 b 1}
}

Posted: Fri Jul 08, 2005 2:36 pm
by lagroue
Better, except at the middle cross :
Image

Code: Select all

startshape noise

rule noise {
	SQUARE { s 1.3 }
	noise { x 1 r 90 s 0.71 b 1}
	noise { x -1 r 90 s 0.71 b -1}
}
rule noise {
	SQUARE { s 1.3 }
	noise { x 1 r 90 s 0.71 b -1}
	noise { x -1 r 90 s 0.71 b 1}
}