• Remix
  • Share
  • New Entry

on 28 Oct 2021
  • 3
  • 17
  • 0
  • 0
  • 259
L=listfonts;
[x,y]=cylinder(1,1e4);
x=x(1,:);
y=y(1,:);
for i=1:length(L)
r=2*mod(i-1,6);
c=4*floor((i-1)/6);
p=@(R,C) patch(R*x+c,R/2*y+r,C,'edgec','n');
p(1.6,'b');
p(1.55,'w');
p(1.5,'b');
axis equal off;
text(r,c,'Ford','col','w','ho','c','ve','m','fontsi',7,'fontname',L{i});
end
Warning: Symbol font is no longer supported. To display special characters, use TeX or LaTeX markup with the Text Interpreter property set to TeX or LaTeX.
Remix Tree