SourceForge logo
SourceForge logo
Menu

matplotlib-checkins — Commit notification. DO NOT POST to this list, just subscribe to it.

You can subscribe to this list here.

2007 Jan
Feb
Mar
Apr
May
Jun
Jul
(115)
Aug
(120)
Sep
(137)
Oct
(170)
Nov
(461)
Dec
(263)
2008 Jan
(120)
Feb
(74)
Mar
(35)
Apr
(74)
May
(245)
Jun
(356)
Jul
(240)
Aug
(115)
Sep
(78)
Oct
(225)
Nov
(98)
Dec
(271)
2009 Jan
(132)
Feb
(84)
Mar
(74)
Apr
(56)
May
(90)
Jun
(79)
Jul
(83)
Aug
(296)
Sep
(214)
Oct
(76)
Nov
(82)
Dec
(66)
2010 Jan
(46)
Feb
(58)
Mar
(51)
Apr
(77)
May
(58)
Jun
(126)
Jul
(128)
Aug
(64)
Sep
(50)
Oct
(44)
Nov
(48)
Dec
(54)
2011 Jan
(68)
Feb
(52)
Mar
Apr
May
Jun
Jul
Aug
Sep
Oct
Nov
Dec
(1)
2018 Jan
Feb
Mar
Apr
May
(1)
Jun
Jul
Aug
Sep
Oct
Nov
Dec
S M T W T F S

1
(2)
2
(5)
3
(7)
4
(1)
5
(2)
6
7
8
(2)
9
(4)
10
(1)
11
12
(2)
13
(3)
14
15
(2)
16
(2)
17
18
19
(3)
20
(5)
21
(5)
22
(1)
23
(2)
24
(1)
25
(1)
26
27
28
29
30
31



Showing 3 results of 3

From: <lee...@us...> - 2010年03月13日 22:31:17
Revision: 8192
 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=8192&view=rev
Author: leejjoon
Date: 2010年03月13日 22:31:11 +0000 (2010年3月13日)
Log Message:
-----------
fix the bug that handles for scatter are incorrectly set when dpi!=72. Thanks to Ray Speth for the bug report.
Modified Paths:
--------------
 trunk/matplotlib/CHANGELOG
 trunk/matplotlib/lib/matplotlib/legend.py
Modified: trunk/matplotlib/CHANGELOG
===================================================================
--- trunk/matplotlib/CHANGELOG	2010年03月13日 22:27:57 UTC (rev 8191)
+++ trunk/matplotlib/CHANGELOG	2010年03月13日 22:31:11 UTC (rev 8192)
@@ -1,3 +1,11 @@
+2010年03月13日 Manually brought in commits from branch
+
+ ------------------------------------------------------------------------
+ r8191 | leejjoon | 2010年03月13日 17:27:57 -0500 (2010年3月13日) | 1 line
+
+ fix the bug that handles for scatter are incorrectly set when dpi!=72. Thanks to Ray Speth for the bug report.
+
+
 2010年03月03日 Manually brought in commits from branch via diff/patch (svnmerge is broken)
 
 ------------------------------------------------------------------------
Modified: trunk/matplotlib/lib/matplotlib/legend.py
===================================================================
--- trunk/matplotlib/lib/matplotlib/legend.py	2010年03月13日 22:27:57 UTC (rev 8191)
+++ trunk/matplotlib/lib/matplotlib/legend.py	2010年03月13日 22:31:11 UTC (rev 8192)
@@ -623,6 +623,14 @@
 xdescent=0., ydescent=descent)
 
 handlebox.add_artist(handle)
+
+ # special case for collection instances
+ if isinstance(handle, RegularPolyCollection) or \
+ isinstance(handle, CircleCollection):
+ handle._transOffset = handlebox.get_transform()
+ handle.set_transform(None)
+
+
 if hasattr(handle, "_legmarker"):
 handlebox.add_artist(handle._legmarker)
 handleboxes.append(handlebox)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
From: <lee...@us...> - 2010年03月13日 22:28:04
Revision: 8191
 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=8191&view=rev
Author: leejjoon
Date: 2010年03月13日 22:27:57 +0000 (2010年3月13日)
Log Message:
-----------
fix the bug that handles for scatter are incorrectly set when dpi!=72. Thanks to Ray Speth for the bug report.
Modified Paths:
--------------
 branches/v0_99_maint/CHANGELOG
 branches/v0_99_maint/lib/matplotlib/legend.py
Modified: branches/v0_99_maint/CHANGELOG
===================================================================
--- branches/v0_99_maint/CHANGELOG	2010年03月13日 19:27:00 UTC (rev 8190)
+++ branches/v0_99_maint/CHANGELOG	2010年03月13日 22:27:57 UTC (rev 8191)
@@ -1,3 +1,6 @@
+2010年03月13日 fix the bug that handles for scatter are incorrectly set when 
+ dpi!=72. Thanks to Ray Speth for the bug report. -JJL
+
 ===============================================
 2009年09月21日 Tagged for release 0.99.1
 
Modified: branches/v0_99_maint/lib/matplotlib/legend.py
===================================================================
--- branches/v0_99_maint/lib/matplotlib/legend.py	2010年03月13日 19:27:00 UTC (rev 8190)
+++ branches/v0_99_maint/lib/matplotlib/legend.py	2010年03月13日 22:27:57 UTC (rev 8191)
@@ -580,6 +580,13 @@
 
 handle = handle_list[-1]
 handlebox.add_artist(handle)
+
+ # special case for collection instances
+ if isinstance(handle, RegularPolyCollection) or \
+ isinstance(handle, CircleCollection):
+ handle._transOffset = handlebox.get_transform()
+ handle.set_transform(None)
+
 if hasattr(handle, "_legmarker"):
 handlebox.add_artist(handle._legmarker)
 handleboxes.append(handlebox)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
From: <ef...@us...> - 2010年03月13日 19:27:07
Revision: 8190
 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=8190&view=rev
Author: efiring
Date: 2010年03月13日 19:27:00 +0000 (2010年3月13日)
Log Message:
-----------
contour: autolev drops line contour levels only if outside data range
Modified Paths:
--------------
 trunk/matplotlib/lib/matplotlib/contour.py
Modified: trunk/matplotlib/lib/matplotlib/contour.py
===================================================================
--- trunk/matplotlib/lib/matplotlib/contour.py	2010年03月12日 23:23:49 UTC (rev 8189)
+++ trunk/matplotlib/lib/matplotlib/contour.py	2010年03月13日 19:27:00 UTC (rev 8190)
@@ -775,7 +775,8 @@
 self._auto = True
 if self.filled:
 return lev
- return lev[1:-1]
+ # For line contours, drop levels outside the data range.
+ return lev[(lev > zmin) & (lev < zmax)]
 
 def _initialize_x_y(self, z):
 '''
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.

Showing 3 results of 3

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.
Thanks for helping keep SourceForge clean.
X





Briefly describe the problem (required):
Upload screenshot of ad (required):
Select a file, or drag & drop file here.
Screenshot instructions:

Click URL instructions:
Right-click on the ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)

More information about our ad policies

Ad destination/click URL:

AltStyle によって変換されたページ (->オリジナル) /