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 6f060eb commit 6002943Copy full SHA for 6002943
1 file changed
tutorials/intermediate/artists.py
@@ -423,7 +423,7 @@ class in the matplotlib API, and the one you will be working with most
423
# In [263]: rect = matplotlib.patches.Rectangle( (1,1), width=5, height=12)
424
#
425
# # by default the axes instance is None
426
-# In [264]: print(rect.get_axes())
+# In [264]: print(rect.axes)
427
# None
428
429
# # and the transformation instance is set to the "identity transform"
@@ -435,7 +435,7 @@ class in the matplotlib API, and the one you will be working with most
435
436
# # and notice that the ax.add_patch method has set the axes
437
# # instance
438
-# In [267]: print(rect.get_axes())
+# In [267]: print(rect.axes)
439
# Axes(0.125,0.1;0.775x0.8)
440
441
# # and the transformation has been set too
0 commit comments