Can I apply Linesmoothing 'on' to existing figure?

I am wondering if I can apply 'linesmoothing','on' to all the plot3s in an existing 3D figure without having to regenerate it from scratch. I cannot find this property in the figure editor, but then its not even documented in the help as far as I know.
Theses figures are pretty complex so it would be a great help not to dig out all that old data again.

 Accepted Answer

If you can get the handle for each object, you can enter:
>> set(handle,'Linesmoothing','on')
even thought get(handle) doesn't show 'Linesmoothing' as one of its fields. To find the handle, try:
>> get(gca,'Children')
Here is an extensive discussion of line smoothing: http://undocumentedmatlab.com/blog/plot-linesmoothing-property/

More Answers (0)

Categories

Find more on Creating, Deleting, and Querying Graphics Objects in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!