• Remix
  • Share
  • New Entry

on 28 Oct 2022
  • 3
  • 89
  • 0
  • 0
  • 277
t=0:.001:6.3;
k=.1;
f=@(r,x,y,a)fill(r*cos(t)+x,r*sin(t)+y,a);
rectangle(Position=[-2 -1 4 5],FaceColor=[k k .3])
hold;
Current plot held
w="w";
f(1,0,1,w);
f(.7,0,2,w);
f(.65,0,2.6,w);
f(k,.3,2.7,"k");
f(k,-.3,2.7,"k");
f(k,0,2.3,[.9 .5 0]);
axis off
r=@()rand(100,1);
scatter(r()*4-2,r()*4,9*r(),w,"filled");
ylim([.6 4])
Remix Tree