Commit 0032d621 authored by Taddeus Kroes's avatar Taddeus Kroes

Non-implemented TUIO handlers no longer raise an exception.

parent 30cc1941
...@@ -80,13 +80,13 @@ class TuioServerHandler(object): ...@@ -80,13 +80,13 @@ class TuioServerHandler(object):
handlers. handlers.
""" """
def on_point_down(self, sid, x, y): def on_point_down(self, sid, x, y):
raise NotImplementedError return NotImplemented
def on_point_move(self, sid, x, y): def on_point_move(self, sid, x, y):
raise NotImplementedError return NotImplemented
def on_point_up(self, sid): def on_point_up(self, sid):
raise NotImplementedError return NotImplemented
if __name__ == '__main__': if __name__ == '__main__':
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment