Add module docstring to examples/canvas/bezier.py

This commit is contained in:
Charles Merriam 2015-01-31 17:19:13 -08:00
parent cc376d931b
commit 8d9ee9fd93
1 changed files with 11 additions and 0 deletions

View File

@ -1,4 +1,15 @@
#!/usr/bin/env python
'''
Bezier Example
==============
This example shows a closed Bezier curve computed from a polygon. You
should see a purple polygon, a red bezier curve computed from the polygon,
and two sliders. You can drag points on the polygon to recompute the curve.
The two sliders control the dash length of the dashed lines making up the two
shapes.
'''
from kivy.app import App
from kivy.uix.floatlayout import FloatLayout
from kivy.uix.slider import Slider