Two or more 3D volumes on same axis .

3 次查看(过去 30 天)
Hello all , I want to ask that, is there any way to plot two or more 3D volumes on same axis ? or say merging of two or more different 3D volumes on same axis having different graphical properties . like cube with sphere or cylinder with cube or cone with sphere etc.

采纳的回答

Star Strider
Star Strider 2015-10-22
Yes!
r = 0:0.05:0.5;
[xc,yc,zc] = cylinder(r);
[xs,yx,zs] = sphere;
figure(1)
surf(xc,yc,zc)
hold on
surf(xs*0.5,yx*0.5,zs*0.5+1.1)
hold off
grid on
axis equal
  2 个评论
yogesh jain
yogesh jain 2015-10-23
Thanks a lot sir , But if I want both shapes in intersecting manner , then ?
Star Strider
Star Strider 2015-10-23
My pleasure.
They are intersecting here, to an extent. If you want the cone to be cutting through the sphere, do something like this:
figure(1)
surf(xc,yc,zc)
hold on
surf(xs*0.5,yx*0.5,zs*0.5+0.2)
hold off
grid on
axis equal
Note that here the sphere z-offset is 0.2 rather than 1.1 as in the original plot.
Experiment with them to get the result you want. Also, see the documentation for the sphere and cylinder functions.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Surface and Mesh Plots 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by