matplotlib-cpp
matplotlib-cpp copied to clipboard
plot3 and plot_surface on same figure
Can you add the possibility to call plot3 and plot_surface, then plot on the same figure, similarly to the plot behavior? For instance, the following code will plot on two figures. Thank you very much.
plt::plot3(xl, yl, zl); plt::plot_surface(x, y, z); plt::xlabel("x label"); plt::ylabel("y label"); plt::set_zlabel("z label"); plt::legend(); plt::show(1);