- /
-
1/3 - Litany Against Fear
on 10 Oct 2024
- 16
- 267
- 3
- 2
- 369
Cite your audio source here (if applicable): https://www.youtube.com/watch?v=mq1d9XKm6gc
Write your drawframe function below
%Hi everyone, last year I made some fun animation sequences and I thought I would repeat this idea :)
%The hand was adapted from a beautiful work from 2022: https://www.mathworks.com/matlabcentral/communitycontests/contests/5/entries/12068
%Thanks, Augusto!
%1/3 - Litany Against Fear
function drawframe(f)
v=@(d,c)fill(d(1:2:end)-0,d(2:2:end)-0,c);
hold on
plot('n'-10,'FFææFF'+20,'w')
%making the pain box:
xB1=[60, 140]
yB1=[230, 230]
xB2=[60, 100, 180, 140]
yB2=[230, 190, 190, 230]
plot(xB2, yB2-1.1*f,'k')
%The hand:
v('Y¤joy_S`2K2O^a{dY','w')
v('e³wty`PPFQY[smc¯','w')
v('vµ|¤~pw','w')
v('L2MjX`£c£d`a2','w')
v('v¾{vv}aRa2L2rq¸r»','w')
plot(xB1,yB1-1.1*f,'k')
set(gca,'View',[-90+f/10 90])
axis equal off
end