• Remix
  • Share
  • New Entry

on 8 Oct 2021
  • 7
  • 40
  • 0
  • 0
  • 115
w=2^9;
[X,Y]=meshgrid(1:w);
I=zeros(w,w,3);
for c=1:3
I(:,:,c)=mod(bitxor(X,Y),2*c+21)<2*c;
end
figure
imshow(I)
axis equal off
Remix Tree