


TOP Simplifies 3-D axes. TOP deletes all lights in the current axes, turns off interpolated shading, and sets the view to overhead so that the surface looks like an image.


0001 function top 0002 %TOP Simplifies 3-D axes. 0003 % TOP deletes all lights in the current axes, turns off interpolated 0004 % shading, and sets the view to overhead so that the surface looks like 0005 % an image. 0006 0007 delete(findobj(gca, 'Type', 'light')); 0008 shading flat; 0009 lighting phong; % otherwise you see seams in the surface. 0010 view([0,90]);