1// Scale independent white noise. Zoom in or out and you won't get artifacts.
2parametric
3    animate :: checkbox = true;
4in
5make_texture ([x,y,z,t]->
6    [x, y, t * bit animate]
7     >> lib.noise.rand3x1
8     >> sRGB.grey)
9