- /
-
RomanSurface
on 10 Oct 2021
- 3
- 8
- 3
- 0
- 165
[u,w] = ndgrid(linspace(-pi,pi));
x=1/2*sin(2*u).*cos(w).^2;
y=1/2*sin(u).*sin(2*w);
z=1/2*cos(u).*sin(2*w);
surf(x,y,z)
shading("interp")
grid off
axis off
view(-45,35);
camlight