# Vlak import matplotlib.pyplot as plt import numpy as np plt.figure (figsize = (8, 8)) ax = plt.axes (projection = "3d") x = np.arange (-2, 2, 0.05) y = np.arange (-2, 2, 0.05) x, y = np.meshgrid (x, y) z = 1 G = np.exp (x + y + z) ax.plot_surface (x, y, G, color = "orange") plt.show ()