Mercurial > hg > octave-nkf
diff src/graphics.cc @ 11795:642af2e62b1f release-3-0-x
fix incorrect axis location properties
author | Francesco Potorti <Potorti@isti.cnr.it> |
---|---|
date | Fri, 01 Aug 2008 09:11:14 +0200 |
parents | 72830070a17b |
children | bfac13fcb6fe |
line wrap: on
line diff
--- a/src/graphics.cc +++ b/src/graphics.cc @@ -1140,8 +1140,8 @@ xdir ("normal"), ydir ("normal"), zdir ("normal"), - xaxislocation ("bottom"), - yaxislocation ("left"), + xaxislocation ("left"), + yaxislocation ("bottom"), linewidth (0.5), view (), visible ("on"), @@ -1441,8 +1441,8 @@ xdir = "normal"; ydir = "normal"; zdir = "normal"; - xaxislocation = "left"; - yaxislocation = "bottom"; + xaxislocation = "bottom"; + yaxislocation = "left"; linewidth = 0.5; Matrix tview (1, 2, 0.0); @@ -1815,8 +1815,8 @@ m["xdir"] = "normal"; m["ydir"] = "normal"; m["zdir"] = "normal"; - m["xaxislocation"] = "bottom"; - m["yaxislocation"] = "left"; + m["xaxislocation"] = "left"; + m["yaxislocation"] = "bottom"; m["linewidth"] = 0.5; Matrix tview (1, 2, 0.0);