• Remix
  • Share
  • New Entry

  • Jr

  • /
  • waxing crescent

on 5 Oct 2021
  • 57
  • 51
  • 0
  • 0
  • 279
a=0:360;
c=cosd(20);
d=sind(20);
R=[c -d;
d c];
XY=R*[cosd(a);sind(a)];
u=XY(1,:);
v=XY(2,:);
o=-90:90;
e=cosd(o);
f=sind(o);
t=e*.8;
XY=R*[e t;f f];
k=XY(1,:);
j=XY(2,:);
figure('color','k');
hold on;
plot(4*rand(7,10)-2,4*rand(7,10)-2,'wp','MarkerSize',4.5);
fill(u,v,'k');
fill(k,j,'w','LineStyle','none');
axis off
Remix Tree