File tree Expand file tree Collapse file tree 2 files changed +7
-13
lines changed Expand file tree Collapse file tree 2 files changed +7
-13
lines changed Original file line number Diff line number Diff line change
1
+ Removed `lod ` from Artist
2
+ `````````````````````````
3
+
4
+ Removed the method *set_lod * and all references to
5
+ the attribute *_lod * as the are not used anywhere else in the
6
+ code base. It appears to be a feature stub that was never built
7
+ out.
Original file line number Diff line number Diff line change @@ -89,7 +89,6 @@ def __init__(self):
89
89
self .clipbox = None
90
90
self ._clippath = None
91
91
self ._clipon = True
92
- self ._lod = False
93
92
self ._label = ''
94
93
self ._picker = None
95
94
self ._contains = None
@@ -740,17 +739,6 @@ def set_alpha(self, alpha):
740
739
self ._alpha = alpha
741
740
self .pchanged ()
742
741
743
- def set_lod (self , on ):
744
- """
745
- Set Level of Detail on or off. If on, the artists may examine
746
- things like the pixel width of the axes and draw a subset of
747
- their contents accordingly
748
-
749
- ACCEPTS: [True | False]
750
- """
751
- self ._lod = on
752
- self .pchanged ()
753
-
754
742
def set_visible (self , b ):
755
743
"""
756
744
Set the artist's visiblity.
@@ -834,7 +822,6 @@ def update_from(self, other):
834
822
self .clipbox = other .clipbox
835
823
self ._clipon = other ._clipon
836
824
self ._clippath = other ._clippath
837
- self ._lod = other ._lod
838
825
self ._label = other ._label
839
826
self ._sketch = other ._sketch
840
827
self ._path_effects = other ._path_effects
You can’t perform that action at this time.
0 commit comments