- /
-
Quadrifolium
on 18 Oct 2024
- 9
- 64
- 0
- 0
- 159
Cite your audio source here (if applicable):
drawframe(1);
Write your drawframe function below
% Gati Zulfikar
% Semarang
% Unkartur
function drawframe(f)
h = linspace(0,2.2*pi,96);
a=h(f)
t = linspace(0,a);
x=1.75*sin(t)-sin(3*t)
y=1.75*cos(t)+cos(3*t)
plot(x,y,'LineWidth',12,'Color',[0 0 0])
axis equal
axis([-3 3 -3 3])
end