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 2f5a633 commit 123deb5Copy full SHA for 123deb5
1 file changed
lib/matplotlib/collections.py
@@ -80,6 +80,12 @@ class Collection(artist.Artist, cm.ScalarMappable):
80
# _offsets must be a Nx2 array!
81
_offsets.shape = (0, 2)
82
_transOffset = transforms.IdentityTransform()
83
+ #: Either a list of 3x3 arrays or an Nx3x3 array of transforms, suitable
84
+ #: for the `all_transforms` argument to
85
+ #: :meth:`~matplotlib.backend_bases.RendererBase.draw_path_collection`;
86
+ #: each 3x3 array is used to initialize an
87
+ #: :class:`~matplotlib.transforms.Affine2D` object.
88
+ #: Each kind of collection defines this based on its arguments.
89
_transforms = np.empty((0, 3, 3))
90
91
def __init__(self,
0 commit comments