[Yt-svn] yt-commit r620 - trunk/yt/raven
    mturk at wrangler.dreamhost.com 
    mturk at wrangler.dreamhost.com
       
    Tue Jun 24 14:32:28 PDT 2008
    
    
  
Author: mturk
Date: Tue Jun 24 14:32:28 2008
New Revision: 620
URL: http://yt.spacepope.org/changeset/620
Log:
Sign error.  This is likely remnant of the origin='lower' debacle of early
aught eight.
Modified:
   trunk/yt/raven/Callbacks.py
Modified: trunk/yt/raven/Callbacks.py
==============================================================================
--- trunk/yt/raven/Callbacks.py	(original)
+++ trunk/yt/raven/Callbacks.py	Tue Jun 24 14:32:28 2008
@@ -62,7 +62,7 @@
                            (x0, x1, y0, y1),).transpose()
         X = na.mgrid[0:plot.image._A.shape[0]-1:nx*1j]# + 0.5*factor
         Y = na.mgrid[0:plot.image._A.shape[1]-1:ny*1j]# + 0.5*factor
-        plot._axes.quiver(X,Y, pixX, -pixY)
+        plot._axes.quiver(X,Y, pixX, pixY)
         plot._axes.set_xlim(xx0,xx1)
         plot._axes.set_ylim(yy0,yy1)
         plot._axes.hold(False)
@@ -288,7 +288,7 @@
                                (x0, x1, y0, y1),)
         X = na.mgrid[0:plot.image._A.shape[0]-1:nx*1j]# + 0.5*factor
         Y = na.mgrid[0:plot.image._A.shape[1]-1:ny*1j]# + 0.5*factor
-        plot._axes.quiver(X,Y, pixX, -pixY)
+        plot._axes.quiver(X,Y, pixX, pixY)
         plot._axes.set_xlim(xx0,xx1)
         plot._axes.set_ylim(yy0,yy1)
         plot._axes.hold(False)
    
    
More information about the yt-svn
mailing list