Speed up rotation on figures?
Show older comments
I don't think there's a real solution here, but thought I'd asl:
I have some surfaces, 3D, defined by several 100 points. I just want to be able to rotate it around in the Figure quicker. Some kind of graphics accelerator, maybe? I have a 6 core machine, and it's a shame all that power cannot be used to just rotate a figure :)
Thank. Dave
Answers (1)
Muhammad Usman Saleem
on 12 Jun 2016
Rotate object about specified origin and direction
rotate(h,direction,alpha)
rotate(...,origin)
see example
Create a surface plot of the peaks function
hSurface = surf(peaks(20));
Rotate the surface plot 25 degrees around its x-axis.
direction = [1 0 0];
rotate(hSurface,direction,25)

4 Comments
David Pesetsky
on 12 Jun 2016
Muhammad Usman Saleem
on 12 Jun 2016
Edited: Muhammad Usman Saleem
on 12 Jun 2016
real time smooth rotation
Please explain these lines?
If you want to show your figure in 3d, then rotation around orgin through angle will be fine
Real times rotator mean? Possible upload your figure, easily for me to understand
David Pesetsky
on 12 Jun 2016
Muhammad Usman Saleem
on 13 Jun 2016
Rotate this figure on some angle to increase spead.
Vote up and accept this answer if youb find solution from here ..
Categories
Find more on Annotations in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!