File tree Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -27,10 +27,6 @@ class HammerAxes(Axes):
27
27
# projection='hammer')``.
28
28
name = 'hammer'
29
29
30
- # The number of interpolation steps when converting from straight
31
- # lines to curves. (See ``transform_path``).
32
- RESOLUTION = 75
33
-
34
30
def __init__ (self , * args , ** kwargs ):
35
31
Axes .__init__ (self , * args , ** kwargs )
36
32
self .set_aspect (0.5 , adjustable = 'box' , anchor = 'C' )
@@ -91,7 +87,7 @@ def _set_lim_and_transforms(self):
91
87
92
88
# 1) The core transformation from data space into
93
89
# rectilinear space defined in the HammerTransform class.
94
- self .transProjection = self .HammerTransform (self . RESOLUTION )
90
+ self .transProjection = self .HammerTransform ()
95
91
96
92
# 2) The above has an output range that is not in the unit
97
93
# rectangle, so scale and translate it so it fits correctly
You can’t perform that action at this time.
0 commit comments