Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 21e0bfd

Browse files
committed
Make resolution of 1 be the default on a polar plot.
svn path=/trunk/matplotlib/; revision=6867
1 parent 1e49781 commit 21e0bfd

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

CHANGELOG

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
2009-02-02 Change default resolution on polar plot to 1 - MGD
2+
13
2009-02-02 Avoid malloc errors in ttconv for fonts that don't have
24
e.g. PostName (a version of Tahoma triggered this) - JKS
35

lib/matplotlib/projections/polar.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ def view_limits(self, vmin, vmax):
177177
return 0, vmax
178178

179179

180-
RESOLUTION = 75
180+
RESOLUTION = 1
181181

182182
def __init__(self, *args, **kwargs):
183183
"""

0 commit comments

Comments
 (0)