- /
-
Hypnotic Rainbow Circles
on 8 Oct 2024
- 10
- 42
- 0
- 0
- 189
Cite your audio source here (if applicable):
drawframe(1);
Write your drawframe function below
function drawframe(f)
N = 500;
[X, Y] = meshgrid(linspace(-2*pi, 2*pi, N));
Z = sin(sqrt(X.^2 + Y.^2) - 2*pi*f/96);
img = ind2rgb(gray2ind(mat2gray(Z), 256), jet(256));
imshow(img, 'InitialMagnification', 'fit');
axis off;
end
Movie
Audio
This submission does not have audio.