Save 3D surface output of "rotate" to variable

Hey all,
I was thrilled to find the rotate function as I was coding up my own. However, I've come across a key issues I was hoping someone could help me with:
After applying the rotate function to a 3D surface, how do I save the output to a variable so that I can analyze it?
Any advice/comments are greatly appreciated. Basically, what I'm trying to do is alter topographic data so that the perspective above a certain point is normal to the surface and work with this perspective.
Many thanks.

 Respuesta aceptada

Scott
Scott el 12 de Nov. de 2015

0 votos

Disregard. Found the following as helpful:

1 comentario

That's right. The rotate function modifies the XData, YData, and ZData properties of the object you give it.
Just to be clear, you can skip all of the openfig and findall stuff on that page you linked to and simplify it down to something like this:
[x,y,z] = cylinder;
h = surf(x,y,z)
rotate(h,[0 1 0],30)
newx = h.XData;
newy = h.YData;
newz = h.ZData;
And if you'd ever like to go back to coding your own, you might find this post helpful. It gets into how you represent perspective when you do this type of transformation.

Iniciar sesión para comentar.

Más respuestas (0)

Preguntada:

el 12 de Nov. de 2015

Comentada:

el 12 de Nov. de 2015

Community Treasure Hunt

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

Start Hunting!

Translated by