@@ -1780,29 +1780,34 @@ class PatchCollection(Collection):
17801780 """
17811781 A generic collection of patches.
17821782
1783- This makes it easier to assign a colormap to a heterogeneous
1783+ PatchCollection draws faster than a large number of equivalent individual
1784+ Patches. It also makes it easier to assign a colormap to a heterogeneous
17841785 collection of patches.
1785-
1786- This also may improve plotting speed, since PatchCollection will
1787- draw faster than a large number of patches.
17881786 """
17891787
17901788 def __init__ (self , patches , match_original = False , ** kwargs ):
17911789 """
1792- *patches*
1793- a sequence of Patch objects. This list may include
1790+ Parameters
1791+ ----------
1792+ patches : list of `.Patch`
1793+ A sequence of Patch objects. This list may include
17941794 a heterogeneous assortment of different patch types.
17951795
1796- * match_original*
1796+ match_original : bool, default: False
17971797 If True, use the colors and linewidths of the original
17981798 patches. If False, new colors may be assigned by
17991799 providing the standard collection arguments, facecolor,
18001800 edgecolor, linewidths, norm or cmap.
18011801
1802- If any of *edgecolors*, *facecolors*, *linewidths*, *antialiaseds* are
1803- None, they default to their `.rcParams` patch setting, in sequence
1804- form.
1802+ **kwargs
1803+ All other parameters are forwarded to `.Collection`.
18051804
1805+ If any of *edgecolors*, *facecolors*, *linewidths*, *antialiaseds*
1806+ are None, they default to their `.rcParams` patch setting, in
1807+ sequence form.
1808+
1809+ Notes
1810+ -----
18061811 The use of `~matplotlib.cm.ScalarMappable` functionality is optional.
18071812 If the `~matplotlib.cm.ScalarMappable` matrix ``_A`` has been set (via
18081813 a call to `~.ScalarMappable.set_array`), at draw time a call to scalar
0 commit comments