1313from . import art3d , proj3d
1414
1515
16- @_api .deprecated ("3.6" , alternative = "a vendored copy of _move_from_center" )
17- def move_from_center (coord , centers , deltas , axmask = (True , True , True )):
18- """
19- For each coordinate where *axmask* is True, move *coord* away from
20- *centers* by *deltas*.
21- """
22- return _move_from_center (coord , centers , deltas , axmask = axmask )
23-
24-
2516def _move_from_center (coord , centers , deltas , axmask = (True , True , True )):
2617 """
2718 For each coordinate where *axmask* is True, move *coord* away from
@@ -31,12 +22,6 @@ def _move_from_center(coord, centers, deltas, axmask=(True, True, True)):
3122 return coord + axmask * np .copysign (1 , coord - centers ) * deltas
3223
3324
34- @_api .deprecated ("3.6" , alternative = "a vendored copy of _tick_update_position" )
35- def tick_update_position (tick , tickxs , tickys , labelpos ):
36- """Update tick line and label position and style."""
37- _tick_update_position (tick , tickxs , tickys , labelpos )
38-
39-
4025def _tick_update_position (tick , tickxs , tickys , labelpos ):
4126 """Update tick line and label position and style."""
4227
@@ -198,11 +183,6 @@ def get_minor_ticks(self, numticks=None):
198183 obj .set_transform (self .axes .transData )
199184 return ticks
200185
201- @_api .deprecated ("3.6" )
202- def set_pane_pos (self , xys ):
203- """Set pane position."""
204- self ._set_pane_pos (xys )
205-
206186 def _set_pane_pos (self , xys ):
207187 xys = np .asarray (xys )
208188 xys = xys [:, :2 ]
0 commit comments