From 3817a1581dae76bc0bf4c4afa3dc26de0a723124 Mon Sep 17 00:00:00 2001 From: tshirtman Date: Tue, 12 Jun 2012 17:23:28 +0300 Subject: [PATCH] add a warning after the gesture example. --- kivy/gesture.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/kivy/gesture.py b/kivy/gesture.py index 8b67c512c..6d3421c09 100644 --- a/kivy/gesture.py +++ b/kivy/gesture.py @@ -21,6 +21,14 @@ new gesture, and compare them:: # ... gdb.find(g2) +.. warning:: + + you don't really want to start from such an example, this is more to get the + idea how one would construct gestures dynamically, but you would need a lot + more points, it's better to record gestures in a file, and reload them to + compare latter, look into the examples/gestures directory for an example of + how to do that. + ''' __all__ = ('Gesture', 'GestureDatabase', 'GesturePoint', 'GestureStroke')