/bezierview

bezier curve animation play

Primary LanguagePythonMIT LicenseMIT

BezierView

View Bezier Curve transformation by Python.

Install

pip install bezierview

Play

Play Bezier Curve with pure python.

play

import bezierview

bezierview.play()

Animation

View an animated creation of pre-defined points.

animation

import bezierview

points = [[50, 350], [250, 100], [330, 350], [450, 100]]
bezierview.animate(points)

View static curve

View a static plot of pre-defined points.

import bezierview

points = [[50, 350], [250, 100], [330, 350], [450, 100]]
bezierview.show(points)

pic