Screenshot instructions:
Windows
Mac
Red Hat Linux
Ubuntu
Click URL instructions:
Right-click on ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)
From: Paul Kienzle <pkienzle@us...> - 2005-10-31 03:20:56
|
Update of /cvsroot/octave/octave-forge/main/plot In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32068 Modified Files: __plt3__.m Log Message: [for Dmitri Sergatskov] fix helix example for 2.1.71 Index: __plt3__.m =================================================================== RCS file: /cvsroot/octave/octave-forge/main/plot/__plt3__.m,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- __plt3__.m 8 Sep 2005 03:19:11 -0000 1.4 +++ __plt3__.m 31 Oct 2005 03:20:46 -0000 1.5 @@ -42,7 +42,7 @@ endif unwind_protect - __gnuplot_raw__ ("set parametric;\n"); + __gnuplot_set__ parametric; __gnuplot_raw__ ("set nohidden3d;\n"); for i=1:columns(x) tmp = [x(:,i), y(:,i), z(:,i)]; @@ -50,6 +50,6 @@ eval (cmd); endfor unwind_protect_cleanup - __gnuplot_raw__ ("set noparametric;\n"); + __gnuplot_set__ noparametric; end_unwind_protect endfunction |