- /
-
Lotus
on 18 Oct 2024
- 11
- 117
- 0
- 0
- 173
Fatal Trouble by ENHYPEN
drawframe(1);
Write your drawframe function below
% Claire Jean Chritian, Oei
% Tanah Mas
% UNKARTUR
function drawframe(f)
h = linspace(0,2.3*pi,96);
a=h(f)
t = linspace(0,a);
x=sin(2*t)-sin(3*t)
y=cos(2*t).*cos(3*t)
plot(x,y,'LineWidth',8,'Color',[1 0 0])
MeshDensity=5555
axis equal
axis([-2 2 -1.2 1.2])
end