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.
0 个评论
采纳的回答
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 个评论
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 Center 和 File Exchange 中查找有关 Surface and Mesh Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!