Effacer les filtres
Effacer les filtres

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

1 vue (au cours des 30 derniers jours)
Victor Falola
Victor Falola le 27 Oct 2022
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.

Réponse acceptée

Torsten
Torsten le 27 Oct 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)

Plus de réponses (0)

Catégories

En savoir plus sur Scatter Plots dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by