# Geparametriseerde 3D-kromme import matplotlib.pyplot as plt import numpy as np from mpl_toolkits import mplot3d plt.figure (figsize = (8, 8)) ax = plt.axes (projection = "3d") t = np.linspace (-2 * np.pi, 2 * np.pi, 200) x = t * np.cos (t) y = t * np.sin (t) z = t ax.plot3D (x, y, z, color = "orange") plt.show ()