MATLAB: Can I apply Linesmoothing ‘on’ to existing figure

linesmoothingMATLABplot

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.

Best 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/