# 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 (0, 1, 200) x = t * np.cos (2 * np.pi * t) y = t * np.sin (2 * np.pi * t) z = t ax.plot3D (x, y, z, color = "red") plt.show ()