- /
-
Martini Glass
on 14 Oct 2022
- 37
- 774
- 0
- 2
- 235
t = 0:pi/500:pi;
X(1,:) = sin(t).*cos(20*t);
X(2,:) = sin(t).*cos(24*t);
X(3,:) = sin(t).*cos(40*t);
Y(1,:) = sin(t).*sin(20*t);
Y(2,:) = sin(t).*sin(24*t);
Y(3,:) = sin(t).*sin(40*t);
Z = sin(t);
plot3(4*X,4*Y,5*Z)
hold on;
plot3(-2*X,-2*Y,-1*Z);
hold off;