MATLAB Functions | Help Desk |
hidden
Remove hidden lines from a mesh plothidden on hidden off hiddenHidden line removal draws only those lines that are not obscured by other objects in the field of view.
hidden on
turns on hidden line removal for the current graph so lines in the back of a mesh are hidden by those in front. This is the default behavior.
hidden off
turns off hidden line removal for the current graph.
hidden
toggles the hidden line removal state.
hidden on
sets the FaceColor
property of a Surface graphics object to BackgroundColor
, which is usually black
. hidden
off
sets the FaceColor
property to none
.
Set hidden line removal off and on while displaying the peaks function:
mesh(peaks)
hidden off
hidden on
shading
The Surface properties FaceColor
and EdgeColor
.