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