- /
-
Embrio
on 31 Oct 2024
- 19
- 169
- 0
- 0
- 185
Cite your audio source here (if applicable):
drawframe(1);
Write your drawframe function below
function drawframe(f)
set(gcf,'Color','#3e3d53')
h = linspace(0,pi,96);
a=h(f)
t=linspace(0,a,1000);
p=polarplot( 14*cos(t)-5*cos(2*t)-2*cos(3*t)-cos(4*t),16*(sin(t)).^3, 'w');p.Marker='n';
hold on;
grid off;axis off;
end