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