How do I move the center of my cyclinder to a specific point?

1 次查看(过去 30 天)
Hi, I plotted a cylinder using this code:
r = 5e-7;
[X,Y,Z] = cylinder(r);
h = 20e-7;
Z = Z*h;
cyl = surf(X,Y,Z,'FaceColor','none');
rotate(cyl, [0 1 0], 90)
how do i move the cyclinder so its center becomes [0 0 0]?
Thanks.

采纳的回答

Torsten
Torsten 2022-10-27
r = 5e-7;
[X,Y,Z] = cylinder(r);
h = 20e-7;
Z = Z*h - 2*r;
cyl = surf(X,Y,Z,'FaceColor','none');
rotate(cyl, [0 1 0], 90)

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Scatter Plots 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by