@@ -237,9 +237,8 @@ def draw_quad_mesh(self, gc, master_transform, meshWidth, meshHeight,
237237 coordinates , offsets , offsetTrans , facecolors ,
238238 antialiased , edgecolors ):
239239 """
240- This provides a fallback implementation of
241- :meth:`draw_quad_mesh` that generates paths and then calls
242- :meth:`draw_path_collection`.
240+ Fallback implementation of :meth:`draw_quad_mesh` that generates paths
241+ and then calls :meth:`draw_path_collection`.
243242 """
244243
245244 from matplotlib .collections import QuadMesh
@@ -298,9 +297,8 @@ def draw_gouraud_triangles(self, gc, triangles_array, colors_array,
298297 def _iter_collection_raw_paths (self , master_transform , paths ,
299298 all_transforms ):
300299 """
301- This is a helper method (along with :meth:`_iter_collection`) to make
302- it easier to write a space-efficient :meth:`draw_path_collection`
303- implementation in a backend.
300+ Helper method (along with :meth:`_iter_collection`) to implement
301+ :meth:`draw_path_collection` in a space-efficient manner.
304302
305303 This method yields all of the base path/transform
306304 combinations, given a master transform, a list of paths and
@@ -348,10 +346,8 @@ def _iter_collection(self, gc, master_transform, all_transforms,
348346 edgecolors , linewidths , linestyles ,
349347 antialiaseds , urls , offset_position ):
350348 """
351- This is a helper method (along with
352- :meth:`_iter_collection_raw_paths`) to make it easier to write
353- a space-efficient :meth:`draw_path_collection` implementation in a
354- backend.
349+ Helper method (along with :meth:`_iter_collection_raw_paths`) to
350+ implement :meth:`draw_path_collection` in a space-efficient manner.
355351
356352 This method yields all of the path, offset and graphics
357353 context combinations to draw the path collection. The caller
0 commit comments