# HG changeset patch # User Rik # Date 1300565210 25200 # Node ID 0579a13f29a1c3fceb347b8fae04793273a087f7 # Parent 2ac5028e5cb7d32760ce86a618aff332feaf6ca1 Add isocolors, isonormals, isosurface functions to documentation. diff -r 2ac5028e5cb7 -r 0579a13f29a1 doc/ChangeLog --- a/doc/ChangeLog Sat Mar 19 12:54:05 2011 -0700 +++ b/doc/ChangeLog Sat Mar 19 13:06:50 2011 -0700 @@ -1,3 +1,8 @@ +2010-03-19 Rik + + * interpreter/plot.txi: Add isocolors, isonormals, isosurface functions + to documentation. + 2010-03-19 Rik * interpreter/basics.txi: Add dump_prefs to documentation. diff -r 2ac5028e5cb7 -r 0579a13f29a1 doc/interpreter/plot.txi --- a/doc/interpreter/plot.txi Sat Mar 19 12:54:05 2011 -0700 +++ b/doc/interpreter/plot.txi Sat Mar 19 13:06:50 2011 -0700 @@ -347,6 +347,12 @@ @DOCSTRING(surfnorm) +@DOCSTRING(isosurface) + +@DOCSTRING(isonormals) + +@DOCSTRING(isocolors) + @DOCSTRING(diffuse) @DOCSTRING(specular) diff -r 2ac5028e5cb7 -r 0579a13f29a1 scripts/ChangeLog --- a/scripts/ChangeLog Sat Mar 19 12:54:05 2011 -0700 +++ b/scripts/ChangeLog Sat Mar 19 13:06:50 2011 -0700 @@ -1,3 +1,8 @@ +2010-03-19 Rik + + * plot/isocolors.m, plot/isonormals.m, plot/isosurface.m: Improve + docstrings. + 2010-03-19 Rik * miscellaneous/dump_prefs.m: Close @deftypefn macro left open. diff -r 2ac5028e5cb7 -r 0579a13f29a1 scripts/plot/isocolors.m --- a/scripts/plot/isocolors.m Sat Mar 19 12:54:05 2011 -0700 +++ b/scripts/plot/isocolors.m Sat Mar 19 13:06:50 2011 -0700 @@ -25,7 +25,7 @@ ## @deftypefnx {Function File} isocolors (@dots{}) ## ## If called with one output argument and the first input argument -## @var{c} is a three--dimensional array that contains color values and +## @var{c} is a three-dimensional array that contains color values and ## the second input argument @var{v} keeps the vertices of a geometry ## then return a matrix @var{cd} with color data information for the ## geometry at computed points @@ -92,7 +92,7 @@ ## isofinish (p); ## @end example ## -## @seealso{isosurface, isonormals, isocaps} +## @seealso{isosurface, isonormals} ## ## @end deftypefn diff -r 2ac5028e5cb7 -r 0579a13f29a1 scripts/plot/isonormals.m --- a/scripts/plot/isonormals.m Sat Mar 19 12:54:05 2011 -0700 +++ b/scripts/plot/isonormals.m Sat Mar 19 13:06:50 2011 -0700 @@ -25,7 +25,7 @@ ## @deftypefnx {Function File} isonormals (@dots{}, @var{p}) ## ## If called with one output argument and the first input argument -## @var{val} is a three--dimensional array that contains the data for an +## @var{val} is a three-dimensional array that contains the data for an ## isosurface geometry and the second input argument @var{v} keeps the ## vertices of an isosurface then return the normals @var{n} in form of ## a matrix with the same size than @var{v} at computed points @@ -88,8 +88,7 @@ ## isofinish (p); ## @end example ## -## @seealso {isosurface, isocolors, isocaps, marching_cube} -## +## @seealso{isosurface, isocolors} ## @end deftypefn ## Author: Martin Helm diff -r 2ac5028e5cb7 -r 0579a13f29a1 scripts/plot/isosurface.m --- a/scripts/plot/isosurface.m Sat Mar 19 12:54:05 2011 -0700 +++ b/scripts/plot/isosurface.m Sat Mar 19 13:06:50 2011 -0700 @@ -26,7 +26,7 @@ ## @deftypefnx {Function File} {} isosurface (@var{x}, @var{y}, @var{z}, @var{val}, @var{iso}, @var{col}, @var{opt}) ## ## If called with one output argument and the first input argument -## @var{val} is a three--dimensional array that contains the data of an +## @var{val} is a three-dimensional array that contains the data of an ## isosurface geometry and the second input argument @var{iso} keeps the ## isovalue as a scalar value then return a structure array @var{fv} ## that contains the fields @var{Faces} and @var{Vertices} at computed @@ -108,8 +108,7 @@ ## # light ("Position", [1 1 5]); ## @end example ## -## @seealso{isocolors, isonormals, isocaps} -## +## @seealso{isonormals, isocolors} ## @end deftypefn ## Author: Martin Helm