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