• Remix
  • Share
  • New Entry

on 27 Oct 2021
  • 4
  • 155
  • 1
  • 0
  • 234
spy
a = gca;
x=a.Children.XData;
y=a.Children.YData;
cla
axis off
hold
Current plot held
xlim(a,[0 700])
ylim(a,[0 700])
for i = 50:120:500
for j = [150 250]-i/8
scatter(x+j,y+i, "k.")
end
end
text(-50,-25,"🛷","FontSize",100)
text(randi(700,100,1),randi(700,100,1),"❄")
Remix Tree