Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b529ed commit d591875Copy full SHA for d591875
doc/api/next_api_changes/behavior/18356-JMK.rst
@@ -0,0 +1,8 @@
1
+Axes3D no longer adds itself to figure
2
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3
+
4
+New `.Axes3D` objects previously added themselves to figures when they were
5
+created, which lead to them being added twice if
6
+`fig.add_subplot(111, projection='3d')` was called. Now `ax = Axes3d(fig)`
7
+will need to be explicitly added to the figure with `fig.add_axes(ax)`, as
8
+also needs to be done for normal `.Axes`.
0 commit comments