Need help with the assignment from uni

1 次查看(过去 30 天)
Tuan
Tuan 2023-3-22
评论: Tuan 2023-3-23
I have a question to draw a 3D cup of coffe (no need to draw a handle), I dont have any idea and knowledge yet to draw a specific object in matlab, can anyone help me with this please, many thanks.

回答(1 个)

Sulaymon Eshkabilov
编辑:Sulaymon Eshkabilov 2023-3-22
You can try using fsurf() to get a cup like shape - see this DOC:
R1 = 7.3/2;
R2 = 5.5/2;
T = asin(R2/R1);
X = @(x,y) R1*cos(x).*sin(y);
Y = @(x,y) R1*sin(x).*sin(y);
Z = @(x,y) -R1*cos(y);
fsurf(X,Y,Z,[0 2*pi 0 T], 'EdgeColor','none')
colormap parula
axis off
  2 个评论
Tuan
Tuan 2023-3-22
thanks for the help, but can you plot the inner surface of the cup too? any idea, cause iam so confuse with all the tutorial online
Tuan
Tuan 2023-3-23
Hi , i just saw that you edit the code but nothing change, is there anything wrong

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Specifying Target for Graphics Output 的更多信息

产品


版本

R2019a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by