(patch)
| 2243 | |
| 2244 | if match_original: |
| 2245 | def determine_facecolor(patch): |
| 2246 | if patch.get_fill(): |
| 2247 | return patch.get_facecolor() |
| 2248 | return [0, 0, 0, 0] |
| 2249 | |
| 2250 | kwargs['facecolors'] = [determine_facecolor(p) for p in patches] |
| 2251 | kwargs['edgecolors'] = [p.get_edgecolor() for p in patches] |
nothing calls this directly
no test coverage detected