MATLAB Function Reference |
Syntax
Description
The shading
function controls the color shading of surface and patch graphics objects.
shading flat
each mesh line segment and face has a constant color determined by the color value at the endpoint of the segment or the corner of the face that has the smallest index or indices.
shading faceted
flat shading with superimposed black mesh lines. This is the default shading mode.
shading interp
varies the color in each line segment and face by interpolating the colormap index or true color value across the line or face.
Examples
Compare a flat, faceted, and interpolated-shaded sphere.
subplot(3,1,1) sphere(16) axis square shading flat title('Flat Shading') subplot(3,1,2) sphere(16) axis square shading faceted title('Faceted Shading') subplot(3,1,3) sphere(16) axis square shading interp title('Interpolated Shading')
Algorithm
shading
sets the EdgeColor
and FaceColor
properties of all surface and patch graphics objects in the current axes. shading
sets the appropriate values, depending on whether the surface or patch objects represent meshes or solid surfaces.
See Also
The EdgeColor
and FaceColor
properties for surface and patch graphics objects
Color Operations for related functions
setxor | shiftdim |
© 1994-2005 The MathWorks, Inc.