• Remix
  • Share
  • New Entry

on 10 Oct 2021
  • 2
  • 4
  • 2
  • 0
  • 163
[u,w] = ndgrid(linspace(-pi,pi));
x=1/2*sin(2*u).*cos(w);
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,-30);
camlight
Remix Tree