- /
-
Cup Saucer
on 5 Oct 2021
- 2
- 24
- 0
- 0
- 252
figure(Color='#012141')
xCenter1 = 0;
theta = 0:0.01:2*pi;
for yCenter1=1:2:100
x1 = yCenter1*cos(theta.^2) +0;
y1 = yCenter1*cos(theta) + yCenter1;
x2 = yCenter1*cos(theta.^2) +0;
y2 = yCenter1*sin(theta) + yCenter1;
plot(x1, y1 );
hold on
plot(x2, y2 );
axis off
end