• Remix
  • Share
  • New Entry

on 3 Oct 2022
  • 3
  • 42
  • 1
  • 1
  • 153
t = 0:pi/500:pi;
for i = 10:0.001:11.3
x = sin(t).*cos(i*t);
y = sin(t).*sin(i*t);
z = cos(t);
x = x(z<0);
y = y(z<0);
plot(x,y,'Color','k');
hold on;
end
hold off;
axis off;

Image

Remix Tree