(axes, *args, **kwargs)
| 928 | |
| 929 | |
| 930 | def plot_surface(axes, *args, **kwargs): |
| 931 | if hasattr(axes, '_phi_z_order_index'): |
| 932 | idx = axes._phi_z_order_index |
| 933 | axes.plot_surface(*args, zorder=.1 + idx * 1e-3, **kwargs) |
| 934 | axes._phi_z_order_index += 1 |
| 935 | else: |
| 936 | axes.plot_surface(*args, **kwargs) |
| 937 | |
| 938 | |
| 939 | def has_legend_like(labels, figure): |