• Remix
  • Share
  • New Entry

on 21 Oct 2021
  • 14
  • 123
  • 1
  • 0
  • 276
% Graffiti based on legal graffeti artist "Stik", East London.
% See comments for a fuller version.
% Brick wall (based on Ratul Das's "Pink Floyd: The Wall")
c=ones(21);
c([1,11],:)=0;
c([1:11,221:231])=0;
imshow(repmat(c,[17,20]));
colormap([1,1,1;.6,0,0])
hold
Current plot held
% body
y=203:44:336;
x=[171,227]+rand(4,2)*9;
patch(x(:),[flip(y),y],'w',FaceA=.9,LineW=4);
% Head (size customized to figure size!)
scatter(200,175,3E3,'k',MarkerFaceC='w',MarkerFaceA=.9,LineW=4);
% Eye (Position customized to figure size!)
scatter([173 220],[179 176],65,'k','f')
Remix Tree