@@ -83,7 +83,8 @@ def __init__(
83
83
axis. A positive angle spins the camera clockwise, causing the
84
84
scene to rotate counter-clockwise.
85
85
sharez : Axes3D, optional
86
- Other Axes to share z-limits with.
86
+ Other Axes to share z-limits with. Note that it is not possible to
87
+ unshare axes.
87
88
proj_type : {'persp', 'ortho'}
88
89
The projection type, default 'persp'.
89
90
box_aspect : 3-tuple of floats, default: None
@@ -107,7 +108,8 @@ def __init__(
107
108
The focal length can be computed from a desired Field Of View via
108
109
the equation: focal_length = 1/tan(FOV/2)
109
110
shareview : Axes3D, optional
110
- Other Axes to share view angles with.
111
+ Other Axes to share view angles with. Note that it is not possible
112
+ to unshare axes.
111
113
112
114
**kwargs
113
115
Other optional keyword arguments:
@@ -1307,7 +1309,7 @@ def sharez(self, other):
1307
1309
1308
1310
This is equivalent to passing ``sharez=other`` when constructing the
1309
1311
Axes, and cannot be used if the z-axis is already being shared with
1310
- another Axes.
1312
+ another Axes. Note that it is not possible to unshare axes.
1311
1313
"""
1312
1314
_api .check_isinstance (Axes3D , other = other )
1313
1315
if self ._sharez is not None and other is not self ._sharez :
@@ -1324,9 +1326,9 @@ def shareview(self, other):
1324
1326
"""
1325
1327
Share the view angles with *other*.
1326
1328
1327
- This is equivalent to passing ``shareview=other`` when
1328
- constructing the Axes, and cannot be used if the view angles are
1329
- already being shared with another Axes.
1329
+ This is equivalent to passing ``shareview=other`` when constructing the
1330
+ Axes, and cannot be used if the view angles are already being shared
1331
+ with another Axes. Note that it is not possible to unshare axes .
1330
1332
"""
1331
1333
_api .check_isinstance (Axes3D , other = other )
1332
1334
if self ._shareview is not None and other is not self ._shareview :
0 commit comments