# 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 (-2 * np.pi, 2 * np.pi, 200) x = np.sin (t) * (np.cos (t))**2 y = np.cos (t) * (np.sin (t))**2 fig, ax = plt.subplots () ax.plot (x, y) plt.show ()