# Geparametriseerde 2D-kromme import matplotlib.pyplot as plt import numpy as np plt.rcParams["figure.figsize"] = [8, 8] plt.rcParams["figure.autolayout"] = True theta = np.linspace (0, 2 * np.pi, 1000) r = np.exp (theta) x = r * np.cos (theta) y = r * np.sin (theta) fig, ax = plt.subplots () ax.plot (x, y, color = "peru") plt.show ()