• Remix
  • Share
  • New Entry

on 16 Oct 2021
  • 38
  • 27
  • 0
  • 0
  • 273
t=0:2*pi/3:2*pi;
x=cos(t);
y=sin(t);
t=0+pi/3:2*pi/3:2*pi+pi/3;
m=cos(t);
p=sin(t);
figure
axis equal off;
hold on
fill([x m]+abs(rand)*40,[y p]+abs(rand)*35,'g','LineStyle','none')
for i=0:2:35
for j=0:2:35
a='k';
if rem(j,4)
a = 'm';
end
fill([x m]+i+rand,[y p]+j+rand,a,'LineStyle','none')
end
end
Remix Tree