https://github.com/morvanzhou/bezierview
bezier curve animation play
https://github.com/morvanzhou/bezierview
Last synced: 2 months ago
JSON representation
bezier curve animation play
- Host: GitHub
- URL: https://github.com/morvanzhou/bezierview
- Owner: MorvanZhou
- License: mit
- Created: 2022-11-26T20:21:42.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-01-13T03:39:41.000Z (over 2 years ago)
- Last Synced: 2025-04-09T16:15:43.887Z (2 months ago)
- Language: Python
- Size: 1000 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# BezierView
View Bezier Curve transformation by Python.
## Install
```shell
pip install bezierview
```# Play
Play Bezier Curve with pure python.

```python
import bezierviewbezierview.play()
```# Animation
View an animated creation of pre-defined points.

```python
import bezierviewpoints = [[50, 350], [250, 100], [330, 350], [450, 100]]
bezierview.animate(points)
```# View static curve
View a static plot of pre-defined points.
```python
import bezierviewpoints = [[50, 350], [250, 100], [330, 350], [450, 100]]
bezierview.show(points)
```