- /
-
Water Droplet
on 18 Oct 2024
- 8
- 59
- 0
- 0
- 177
Cite your audio source here (if applicable):
drawframe(1);
Write your drawframe function below
% Steven Rich Wiharja
% Permata Biru
% Unkartur
function drawframe(f)
h = linspace(0,2.8,96);
a=h(f)
t = linspace(0,a);
x=2*sin(3*t)-sin(6*t)
y=2*2*cos(3*t)+2*cos(3*t)
plot(x,y,'LineWidth',8,'Color',[0 0 1])
MeshDensity=5555
axis equal
axis([-3 3 -6.3 6.3])
end