bezierview

bezier curve visualization


License
MIT
Install
pip install bezierview==0.0.3

Documentation

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