• Remix
  • Share
  • New Entry

on 24 Oct 2021
  • 2
  • 11
  • 0
  • 0
  • 270
clf
figure;
t=3*pi/2:-0.01:pi/2;
x=1+cos(t);
y=-10+10*sin(t);
plot(x,y,'-k','linewidth',3);
hold on;
t=0:0.01:2*pi;
x=10*cos(t);
y=3*sin(t);
for i=1:5
q=[x;y];
e=pi/5*i;
z=[cos(e) -sin(e);sin(e) cos(e)];
k=z*q;
r=k(1,:);
d=k(2,:);
fill(r,d,'m');
plot(r,d,'m');
end
patch(3*cos(t),3*sin(t),[0.2 0 0]);
axis off
Remix Tree