examples/canvas/lines.py Add docstring.

This commit is contained in:
Charles Merriam 2015-02-01 03:57:16 -08:00
parent 650e539631
commit 2639b1731b
1 changed files with 13 additions and 0 deletions

View File

@ -1,3 +1,16 @@
'''
Line (SmoothLine) Experiment
============================
This demonstrates the experimental and unfinished SmoothLine feature
for fast line drawing. You should see a multi-segment
path at the top of the screen, and sliders and buttons along the bottom.
You can click to add new points to the segment, change the transparency
and width of the line, or hit 'Animate' to see a set of sine and cosine
animations. The Cap and Joint buttons don't work: SmoothLine has not
implemented these features yet.
'''
from kivy.app import App
from kivy.properties import OptionProperty, NumericProperty, ListProperty, \
BooleanProperty