View Bezier Curve transformation by Python.
pip install bezierview
Play Bezier Curve with pure python.
import bezierview
bezierview.play()
View an animated creation of pre-defined points.
import bezierview
points = [[50, 350], [250, 100], [330, 350], [450, 100]]
bezierview.animate(points)
View a static plot of pre-defined points.
import bezierview
points = [[50, 350], [250, 100], [330, 350], [450, 100]]
bezierview.show(points)