- /
-
Geometric design principles (6)
on 26 Oct 2021
- 8
- 86
- 1
- 0
- 224
k=sqrt(3);
x=[-1 -1 2];
y=[k -k 0];
n=bone(99).^0.1;
e='edgecolor';
o='none';
for r=0:30
for c=0:10
a=6*c+3*mod(r,2);
b=k*r;
s=randi([1 99],2,1);
patch(x+a,y-b,n(s(1),:),e,o);
patch(4-x+a,y-b,n(s(2),:),e,o);
end
end
axis equal off;
axis([2 65 -28*k 0]);