changeset 17670:ea9df126c9a5

quiver3.m: Turn plot box off, and grid on, for Matlab compatibility. * scripts/plot/draw/quiver3.m: Turn plot box off, and grid on, for Matlab compatibility.
author Rik <rik@octave.org>
date Wed, 16 Oct 2013 15:24:40 -0700
parents b7670c05731b
children ddfc1600a311
files scripts/plot/draw/quiver3.m
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/plot/draw/quiver3.m	Wed Oct 16 23:22:50 2013 +0200
+++ b/scripts/plot/draw/quiver3.m	Wed Oct 16 15:24:40 2013 -0700
@@ -80,7 +80,8 @@
       htmp = __quiver__ (hax, true, varargin{:});
 
       if (! ishold (hax))
-        set (hax, "view", [-37.5, 30]);  # 3D view
+        set (hax, "view", [-37.5, 30], "box", "off",
+                  "xgrid", "on", "ygrid", "on", "zgrid", "on");
       endif
     unwind_protect_cleanup
       if (! isempty (oldfig))