- /
-
Summer in Egypt
on 21 Oct 2021
- 14
- 48
- 3
- 0
- 280
fill([0 0 9 9],[1 5 5 1],[1/2 1 1]/2);hold;
rectangle('Position',[7 2 1.5 1],'Curvature',[1,1],'FaceColor','#ffb303');
f(1,3);
f(2,5);
f(4,4);
axis off;
function f(a,w)
e=1+.4*w;
b=a+w/2;
g=plot(polyshape([a b a+w],[1 e 1]));
g.FaceColor=[.7 .5 .2];
g.FaceAlpha=1;
line([b a+3*w/4],[e 1],'Color','k');
end