13
13
from . import art3d , proj3d
14
14
15
15
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
-
25
16
def _move_from_center (coord , centers , deltas , axmask = (True , True , True )):
26
17
"""
27
18
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)):
31
22
return coord + axmask * np .copysign (1 , coord - centers ) * deltas
32
23
33
24
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
-
40
25
def _tick_update_position (tick , tickxs , tickys , labelpos ):
41
26
"""Update tick line and label position and style."""
42
27
@@ -198,11 +183,6 @@ def get_minor_ticks(self, numticks=None):
198
183
obj .set_transform (self .axes .transData )
199
184
return ticks
200
185
201
- @_api .deprecated ("3.6" )
202
- def set_pane_pos (self , xys ):
203
- """Set pane position."""
204
- self ._set_pane_pos (xys )
205
-
206
186
def _set_pane_pos (self , xys ):
207
187
xys = np .asarray (xys )
208
188
xys = xys [:, :2 ]
0 commit comments