Function that renders the all the source surfaces in a destination source
(destination_surface, source_surfaces, rect=None, blend_mode=0)
| 163 | |
| 164 | @staticmethod |
| 165 | def blits(destination_surface, source_surfaces, rect=None, blend_mode=0): |
| 166 | """Function that renders the all the source surfaces in a destination source""" |
| 167 | for surface in source_surfaces: |
| 168 | destination_surface.blit(surface[0], surface[1], rect, blend_mode) |
| 169 | |
| 170 | @staticmethod |
| 171 | def length(v): |