diff scripts/geometry/trimesh.m @ 11587:c792872f8942

all script files: untabify and strip trailing whitespace
author John W. Eaton <jwe@octave.org>
date Thu, 20 Jan 2011 17:35:29 -0500
parents fd0a3ac60b0e
children 87926ee23581
line wrap: on
line diff
--- a/scripts/geometry/trimesh.m
+++ b/scripts/geometry/trimesh.m
@@ -20,9 +20,9 @@
 ## @deftypefn  {Function File} {} trimesh (@var{tri}, @var{x}, @var{y}, @var{z})
 ## @deftypefnx {Function File} {@var{h} =} trimesh (@dots{})
 ## Plot a triangular mesh in 3D@.  The variable @var{tri} is the triangular
-## meshing of the points @code{(@var{x}, @var{y})} which is returned 
-## from @code{delaunay}.  The variable @var{z} is value at the point 
-## @code{(@var{x}, @var{y})}.  The output argument @var{h} is the graphic 
+## meshing of the points @code{(@var{x}, @var{y})} which is returned
+## from @code{delaunay}.  The variable @var{z} is value at the point
+## @code{(@var{x}, @var{y})}.  The output argument @var{h} is the graphic
 ## handle to the plot.
 ## @seealso{triplot, delaunay3}
 ## @end deftypefn
@@ -40,12 +40,12 @@
   else
     newplot ();
     if (nargout > 0)
-      h = patch ("Vertices", [x(:), y(:), z(:)], "Faces", tri, 
-                 "FaceColor", "none", "EdgeColor", __next_line_color__(), 
+      h = patch ("Vertices", [x(:), y(:), z(:)], "Faces", tri,
+                 "FaceColor", "none", "EdgeColor", __next_line_color__(),
                  varargin{:});
     else
-      patch ("Vertices", [x(:), y(:), z(:)], "Faces", tri, 
-             "FaceColor", "none", "EdgeColor", __next_line_color__(), 
+      patch ("Vertices", [x(:), y(:), z(:)], "Faces", tri,
+             "FaceColor", "none", "EdgeColor", __next_line_color__(),
              varargin{:});
     endif