@@ -84,7 +84,8 @@ def __init__(
8484 axis. A positive angle spins the camera clockwise, causing the
8585 scene to rotate counter-clockwise.
8686 sharez : Axes3D, optional
87- Other Axes to share z-limits with.
87+ Other Axes to share z-limits with. Note that it is not possible to
88+ unshare axes.
8889 proj_type : {'persp', 'ortho'}
8990 The projection type, default 'persp'.
9091 box_aspect : 3-tuple of floats, default: None
@@ -108,7 +109,8 @@ def __init__(
108109 The focal length can be computed from a desired Field Of View via
109110 the equation: focal_length = 1/tan(FOV/2)
110111 shareview : Axes3D, optional
111- Other Axes to share view angles with.
112+ Other Axes to share view angles with. Note that it is not possible
113+ to unshare axes.
112114
113115 **kwargs
114116 Other optional keyword arguments:
@@ -1308,7 +1310,7 @@ def sharez(self, other):
13081310
13091311 This is equivalent to passing ``sharez=other`` when constructing the
13101312 Axes, and cannot be used if the z-axis is already being shared with
1311- another Axes.
1313+ another Axes. Note that it is not possible to unshare axes.
13121314 """
13131315 _api .check_isinstance (Axes3D , other = other )
13141316 if self ._sharez is not None and other is not self ._sharez :
@@ -1325,9 +1327,9 @@ def shareview(self, other):
13251327 """
13261328 Share the view angles with *other*.
13271329
1328- This is equivalent to passing ``shareview=other`` when
1329- constructing the Axes, and cannot be used if the view angles are
1330- already being shared with another Axes.
1330+ This is equivalent to passing ``shareview=other`` when constructing the
1331+ Axes, and cannot be used if the view angles are already being shared
1332+ with another Axes. Note that it is not possible to unshare axes .
13311333 """
13321334 _api .check_isinstance (Axes3D , other = other )
13331335 if self ._shareview is not None and other is not self ._shareview :
0 commit comments