Skip to content

Instantly share code, notes, and snippets.

View AlexS12's full-sized avatar

Álex Sáez AlexS12

View GitHub Profile
@astrojuanlu
astrojuanlu / bezier_curves.py
Last active September 25, 2023 13:09
Interactive Bézier curves with Python using just matplotlib.
import matplotlib
matplotlib.use('webagg')
import numpy as np
from scipy.special import binom
import matplotlib.pyplot as plt
from matplotlib.lines import Line2D