# HG changeset patch # User Rik # Date 1381962280 25200 # Node ID ea9df126c9a52fd5350eff01d412cab143ac8a48 # Parent b7670c05731b3eb32fd3628b27e5962b3478c931 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. diff -r b7670c05731b -r ea9df126c9a5 scripts/plot/draw/quiver3.m --- 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))