examples/canvas/mesh_manipulation.py add docstring

This commit is contained in:
Charles Merriam 2015-02-01 12:23:01 -08:00
parent 71e4549f17
commit 7992020039
1 changed files with 13 additions and 0 deletions

View File

@ -1,3 +1,16 @@
'''
Mesh Manipulation Example
=========================
This demonstrates creating a mesh and using it to deform the texture (the
kivy log). You should see the kivy logo with a five sliders to right.
The sliders change the mesh points' x and y offsets, radius, and a
'wobble' deformation's magnitude and speed.
This example is developed in gabriel's blog post at
http://kivy.org/planet/2014/01/kivy-image-manipulations-with-mesh-and-textures/
'''
from kivy.app import App
from kivy.lang import Builder
from kivy.core.image import Image as CoreImage