def surf(X, Y, Z, C=None, cmap='viridis'): surf_plot = ax.plot_surface(X, Y, Z, facecolors=plt.cm.get_cmap(cmap)(C), rstride=1, cstride=1, antialiased=True) ...
My custom made engine based on the great Raylib Framework. Main focus is being performant and only using draw functions instead of textures.