@@ -3825,9 +3825,7 @@ def __str__(self):
3825
3825
def __init__ (self , posA = None , posB = None ,
3826
3826
path = None ,
3827
3827
arrowstyle = "simple" ,
3828
- arrow_transmuter = None ,
3829
3828
connectionstyle = "arc3" ,
3830
- connector = None ,
3831
3829
patchA = None ,
3832
3830
patchB = None ,
3833
3831
shrinkA = 2 ,
@@ -3866,9 +3864,6 @@ def __init__(self, posA=None, posB=None,
3866
3864
3867
3865
%(AvailableArrowstyles)s
3868
3866
3869
- arrow_transmuter
3870
- Ignored.
3871
-
3872
3867
connectionstyle : str or `.ConnectionStyle` or None, optional, \
3873
3868
default: 'arc3'
3874
3869
The `.ConnectionStyle` with which *posA* and *posB* are connected.
@@ -3878,9 +3873,6 @@ def __init__(self, posA=None, posB=None,
3878
3873
3879
3874
%(AvailableConnectorstyles)s
3880
3875
3881
- connector
3882
- Ignored.
3883
-
3884
3876
patchA, patchB : `.Patch`, default: None
3885
3877
Head and tail patches, respectively.
3886
3878
@@ -3910,20 +3902,6 @@ def __init__(self, posA=None, posB=None,
3910
3902
In contrast to other patches, the default ``capstyle`` and
3911
3903
``joinstyle`` for `FancyArrowPatch` are set to ``"round"``.
3912
3904
"""
3913
- if arrow_transmuter is not None :
3914
- cbook .warn_deprecated (
3915
- 3.0 ,
3916
- message = ('The "arrow_transmuter" keyword argument is not used,'
3917
- ' and will be removed in Matplotlib 3.1' ),
3918
- name = 'arrow_transmuter' ,
3919
- obj_type = 'keyword argument' )
3920
- if connector is not None :
3921
- cbook .warn_deprecated (
3922
- 3.0 ,
3923
- message = ('The "connector" keyword argument is not used,'
3924
- ' and will be removed in Matplotlib 3.1' ),
3925
- name = 'connector' ,
3926
- obj_type = 'keyword argument' )
3927
3905
# Traditionally, the cap- and joinstyle for FancyArrowPatch are round
3928
3906
kwargs .setdefault ("joinstyle" , "round" )
3929
3907
kwargs .setdefault ("capstyle" , "round" )
@@ -4193,9 +4171,7 @@ def __str__(self):
4193
4171
def __init__ (self , xyA , xyB , coordsA , coordsB = None ,
4194
4172
axesA = None , axesB = None ,
4195
4173
arrowstyle = "-" ,
4196
- arrow_transmuter = None ,
4197
4174
connectionstyle = "arc3" ,
4198
- connector = None ,
4199
4175
patchA = None ,
4200
4176
patchB = None ,
4201
4177
shrinkA = 0. ,
@@ -4278,9 +4254,7 @@ def __init__(self, xyA, xyB, coordsA, coordsB=None,
4278
4254
FancyArrowPatch .__init__ (self ,
4279
4255
posA = (0 , 0 ), posB = (1 , 1 ),
4280
4256
arrowstyle = arrowstyle ,
4281
- arrow_transmuter = arrow_transmuter ,
4282
4257
connectionstyle = connectionstyle ,
4283
- connector = connector ,
4284
4258
patchA = patchA ,
4285
4259
patchB = patchB ,
4286
4260
shrinkA = shrinkA ,
0 commit comments