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 @@ -440,13 +440,13 @@ def do_3d_projection(self, renderer):
440
440
fcs = (_zalpha (self ._facecolor3d , vzs ) if self ._depthshade else
441
441
self ._facecolor3d )
442
442
fcs = mcolors .to_rgba_array (fcs , self ._alpha )
443
- self . set_facecolors (fcs )
443
+ super (). set_facecolor (fcs )
444
444
445
445
ecs = (_zalpha (self ._edgecolor3d , vzs ) if self ._depthshade else
446
446
self ._edgecolor3d )
447
447
ecs = mcolors .to_rgba_array (ecs , self ._alpha )
448
- self . set_edgecolors (ecs )
449
- PatchCollection .set_offsets (self , np .column_stack ([vxs , vys ]))
448
+ super (). set_edgecolor (ecs )
449
+ super () .set_offsets (np .column_stack ([vxs , vys ]))
450
450
451
451
if vzs .size > 0 :
452
452
return min (vzs )
@@ -544,8 +544,8 @@ def do_3d_projection(self, renderer):
544
544
fcs = mcolors .to_rgba_array (fcs , self ._alpha )
545
545
ecs = mcolors .to_rgba_array (ecs , self ._alpha )
546
546
547
- self . set_edgecolors (ecs )
548
- self . set_facecolors (fcs )
547
+ super (). set_edgecolor (ecs )
548
+ super (). set_facecolor (fcs )
549
549
self .set_sizes (sizes )
550
550
self .set_linewidth (lws )
551
551
You can’t perform that action at this time.
0 commit comments