[yade] 03/04: Fix py/plot.py.

Anton Gladky gladk at moszumanska.debian.org
Fri May 20 17:50:57 UTC 2016


This is an automated email from the git hooks/post-receive script.

gladk pushed a commit to branch master
in repository yade.

commit 1d7c0e52c7ab6cb2d308656142c85e7f47344fea
Author: Anton Gladky <gladk at debian.org>
Date:   Fri May 20 19:49:28 2016 +0200

    Fix py/plot.py.
---
 py/plot.py | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/py/plot.py b/py/plot.py
index 538c59d..b51e3fe 100644
--- a/py/plot.py
+++ b/py/plot.py
@@ -352,7 +352,7 @@ class LineRef:
 						#	dx,dy=[numpy.average(numpy.diff(dta[current-window:current])) for dta in self.xdata,self.ydata]
 						#except IndexError: pass
 						# there must be an easier way to find on-screen derivative angle, ask on the matplotlib mailing list
-						axes=self.line.axes()
+						axes=self.line.get_axes()
 						p=axes.patch; xx,yy=p.get_verts()[:,0],p.get_verts()[:,1]; size=max(xx)-min(xx),max(yy)-min(yy)
 						aspect=(size[1]/size[0])*(1./axes.get_data_ratio())
 						angle=math.atan(aspect*dy/dx)
@@ -435,7 +435,7 @@ def createPlots(subPlots=True,scatterSize=60,wider=False):
 				# if current value is NaN, use zero instead
 				scatter=pylab.scatter(scatterPt[0] if not math.isnan(scatterPt[0]) else 0,scatterPt[1] if not math.isnan(scatterPt[1]) else 0,s=scatterSize,color=line.get_color(),**scatterMarkerKw)
 				currLineRefs.append(LineRef(line,scatter,line2,data[pStrip],data[d[0]]))
-			axes=line.axes
+			axes=line.get_axes()
 			labelLoc=(legendLoc[0 if isY1 else 1] if y2Exists>0 else 'best')
 			l=pylab.legend(loc=labelLoc)
 			if hasattr(l,'draggable'): l.draggable(True)
@@ -472,7 +472,7 @@ def liveUpdate(timestamp):
 		for l in currLineRefs:
 			l.update()
 			figs.add(l.line.get_figure())
-			axes.add(l.line.axes)
+			axes.add(l.line.get_axes())
 			linesData.add(id(l.ydata))
 		# find callables in y specifiers, create new lines if necessary
 		for ax in axes:
@@ -591,7 +591,7 @@ def plot(noShow=False,subPlots=True):
 	"""
 	createPlots(subPlots=subPlots)
 	global currLineRefs
-	figs=set([l.line.axes.get_figure() for l in currLineRefs])
+	figs=set([l.line.get_axes().get_figure() for l in currLineRefs])
 	if not hasattr(list(figs)[0],'show') and not noShow:
 		import warnings
 		warnings.warn('plot.plot not showing figure (matplotlib using headless backend?)')
@@ -612,10 +612,10 @@ def plot(noShow=False,subPlots=True):
 						ff=event.canvas.figure
 						# remove closed axes from our update list
 						global currLineRefs
-						currLineRefs=[l for l in currLineRefs if l.line.axes.get_figure()!=ff] 
+						currLineRefs=[l for l in currLineRefs if l.line.get_axes().get_figure()!=ff] 
 					f.canvas.mpl_connect('close_event',closeFigureCallback)
 	else:
-		figs=list(set([l.line.get_figure() for l in currLineRefs]))
+		figs=list(set([l.line.get_axes().get_figure() for l in currLineRefs]))
 		if len(figs)==1: return figs[0]
 		else: return figs
 

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/yade.git



More information about the debian-science-commits mailing list