# Vlak

import matplotlib.pyplot as plt
import numpy as np

plt.figure (figsize = (9, 9))

ax = plt.axes (projection = "3d")

grens = 30

x = np.arange (- grens, grens, 0.05)
y = np.arange (- grens, grens, 0.05)

x, y = np.meshgrid (x, y)

r = np.sqrt (x**2 + y**2)
z = np.sin (r) / r

ax.set_xlim ([- grens, grens])
ax.set_ylim ([- grens, grens])
ax.set_zlim ([-1, 3])

ax.plot_wireframe (x, y, z, color = "orange")

plt.axis ("off")
plt.show ()
