Filter löschen
Filter löschen

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

1 Ansicht (letzte 30 Tage)
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.

Akzeptierte Antwort

Torsten
Torsten am 27 Okt. 2022
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)

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by