@@ -83,7 +83,8 @@ def __init__(
8383 axis. A positive angle spins the camera clockwise, causing the
8484 scene to rotate counter-clockwise.
8585 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.
8788 proj_type : {'persp', 'ortho'}
8889 The projection type, default 'persp'.
8990 box_aspect : 3-tuple of floats, default: None
@@ -107,7 +108,8 @@ def __init__(
107108 The focal length can be computed from a desired Field Of View via
108109 the equation: focal_length = 1/tan(FOV/2)
109110 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.
111113
112114 **kwargs
113115 Other optional keyword arguments:
@@ -1307,7 +1309,7 @@ def sharez(self, other):
13071309
13081310 This is equivalent to passing ``sharez=other`` when constructing the
13091311 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.
13111313 """
13121314 _api .check_isinstance (Axes3D , other = other )
13131315 if self ._sharez is not None and other is not self ._sharez :
@@ -1324,9 +1326,9 @@ def shareview(self, other):
13241326 """
13251327 Share the view angles with *other*.
13261328
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 .
13301332 """
13311333 _api .check_isinstance (Axes3D , other = other )
13321334 if self ._shareview is not None and other is not self ._shareview :
0 commit comments