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