File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -438,13 +438,13 @@ def do_3d_projection(self, renderer):
438
438
fcs = (_zalpha (self ._facecolor3d , vzs ) if self ._depthshade else
439
439
self ._facecolor3d )
440
440
fcs = mcolors .to_rgba_array (fcs , self ._alpha )
441
- self . set_facecolors (fcs )
441
+ super (). set_facecolor (fcs )
442
442
443
443
ecs = (_zalpha (self ._edgecolor3d , vzs ) if self ._depthshade else
444
444
self ._edgecolor3d )
445
445
ecs = mcolors .to_rgba_array (ecs , self ._alpha )
446
- self . set_edgecolors (ecs )
447
- PatchCollection .set_offsets (self , np .column_stack ([vxs , vys ]))
446
+ super (). set_edgecolor (ecs )
447
+ super () .set_offsets (np .column_stack ([vxs , vys ]))
448
448
449
449
if vzs .size > 0 :
450
450
return min (vzs )
@@ -540,8 +540,8 @@ def do_3d_projection(self, renderer):
540
540
fcs = mcolors .to_rgba_array (fcs , self ._alpha )
541
541
ecs = mcolors .to_rgba_array (ecs , self ._alpha )
542
542
543
- self . set_edgecolors (ecs )
544
- self . set_facecolors (fcs )
543
+ super (). set_edgecolor (ecs )
544
+ super (). set_facecolor (fcs )
545
545
self .set_sizes (sizes )
546
546
self .set_linewidth (lws )
547
547
You can’t perform that action at this time.
0 commit comments