- /
-
Anti-symmetric HSV
on 18 Oct 2021
- 3
- 4
- 3
- 0
- 130
[x,y]=meshgrid(-20:.02:20);
s=@(p,q)sin(((x-p).^2+(y-q).^2).^0.5);
mesh(x,y,s(-3,0)-s(3,0))
colormap(gca,'hsv')
view(0,90)
axis equal off