From 8d9ee9fd931b9d01943808ff8bf48349154e047f Mon Sep 17 00:00:00 2001 From: Charles Merriam Date: Sat, 31 Jan 2015 17:19:13 -0800 Subject: [PATCH] Add module docstring to examples/canvas/bezier.py --- examples/canvas/bezier.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/examples/canvas/bezier.py b/examples/canvas/bezier.py index 45ebdfb60..2a6278a77 100644 --- a/examples/canvas/bezier.py +++ b/examples/canvas/bezier.py @@ -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