# HG changeset patch # User David Bateman # Date 1217191088 -7200 # Node ID d1cb940b3870712549a20c88c9bd68b8b132618c # Parent fc813a4fe194c1f7501f24f1cc0b50a4c75213fa Clarify help of the shading function diff --git a/scripts/ChangeLog b/scripts/ChangeLog --- a/scripts/ChangeLog +++ b/scripts/ChangeLog @@ -1,3 +1,7 @@ +2008-07-28 David Bateman + + * plot/shading.m: Clarify help string. + 2008-08-20 David Bateman * plot/__go_draw_axes__.m: Don't set pm3d implicit if the plot diff --git a/scripts/plot/shading.m b/scripts/plot/shading.m --- a/scripts/plot/shading.m +++ b/scripts/plot/shading.m @@ -20,9 +20,22 @@ ## @deftypefn {Function File} {} shading (@var{type}) ## @deftypefnx {Function File} {} shading (@var{ax}, @dots{}) ## Set the shading of surface or patch graphic objects. Valid arguments -## for @var{type} are @code{"flat"}, @code{"interp"}, or -## @code{"faceted"}. If @var{ax} is given the shading is applied to -## axis @var{ax} instead of the current axis. +## for @var{type} are +## +## @table @code +## @item "flat" +## Single colored patches with invisible edges. +## +## @item "faceted" +## Single colored patches with visible edges. +## +## @item "interp" +## Color between patch vertices are interpolated and the patch edges are +## invisible. +## @end table +## +## If @var{ax} is given the shading is applied to axis @var{ax} instead +## of the current axis. ## @end deftypefn ## Author: Kai Habel