• Remix
  • Share
  • New Entry

on 20 Oct 2021
  • 33
  • 26
  • 1
  • 0
  • 235
l=@linspace;
C=@cos;
S=@sin;
t=l(0,2*pi);
F=5*C(t);
G=8*S(t);
T=l(0,2*pi,10);
r=5*C(T);
s=8*S(T);
for i=1:10
X(:,i)=l(0,r(i),5);
Y(:,i)=l(0,s(i),5);
end
T=t(38:90);
x=-2+2*C(T);
y=2+2*S(T);
p=@plot;
P=@patch;
L='LineW';
hold on
P(F,G,'k')
p(X,Y,'w',X',Y','w')
% P(x,y,'r',L,7)
% P(-x,y,'r',L,7)
axis off equal
Remix Tree