- /
-
Sea House
on 16 Oct 2021
- 32
- 81
- 0
- 0
- 268
%Remix from Adam Danz
rng(0)
% Dark sky
q=50:-.5:1
hold% hold before imagesc to keep ydir normal
imagesc(q'.*(q./q),[20,80])
% Add star rotation
[x,y]=pol2cart(rand,rand)
m=99
plot(x+m,y+m,'w')% Add grassy hill
x=[1,1:.1:m,m]
y=[1,cos(0:.1/98:1)*30+randg(1,1,981),1]
fill(x,y,'k')% Add house silhouette
fill([4 4 3 6 9 8 8]*5,[5 7 7 8 7 7 5]*5,'k')
axis off
text(29,35,'◍','color','y')
text(60,40,'🚣','Fontsi',50)