├── .gitignore ├── LICENSE ├── README ├── TODO ├── example ├── Makefile ├── addons.make ├── bin │ └── data │ │ └── verdana.ttf ├── config.make ├── ofxTableGesturesExample-win.cbp ├── ofxTableGesturesExample.cbp ├── ofxTableGesturesExample.workspace └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── install.xml └── src ├── Core ├── EventClient.hpp ├── FigureGraphic.hpp ├── Graphic.cpp ├── Graphic.hpp ├── GraphicDispatcher.cpp ├── GraphicDispatcher.hpp ├── TableApp.cpp └── TableApp.hpp ├── Feedback ├── CursorFeedback.cpp ├── CursorFeedback.hpp ├── FigureFeedback.cpp ├── FigureFeedback.hpp ├── HandFeedback.hpp ├── LongPushFeedback.hpp └── TapFeedback.hpp ├── Gestures ├── DirectPoint.hpp ├── Events.hpp ├── Gestures-Extras │ ├── InputGestureHand.cpp │ ├── InputGestureHand.hpp │ ├── InputGestureLongPush.hpp │ └── InputGestureTap.hpp ├── Gestures │ ├── InputGestureBasicFingers.cpp │ ├── InputGestureBasicFingers.hpp │ ├── InputGestureBasicObjects.cpp │ ├── InputGestureBasicObjects.hpp │ ├── InputGestureDirectFingers.cpp │ ├── InputGestureDirectFingers.hpp │ ├── InputGestureDirectObjects.cpp │ ├── InputGestureDirectObjects.hpp │ └── InputGestureTuio1.1.hpp └── tuio1.1 │ ├── InputGestureOsc.hpp │ ├── InputGestureTuio1.12.5D.cpp │ ├── InputGestureTuio1.12.5D.hpp │ ├── InputGestureTuio1.12D.cpp │ ├── InputGestureTuio1.12D.hpp │ ├── InputGestureTuio1.13D.cpp │ └── InputGestureTuio1.13D.hpp ├── Render ├── Grid.cpp ├── Grid.hpp ├── Renderer.cpp ├── Renderer.hpp ├── Renderer_plane.cpp ├── Renderer_plane.hpp ├── Renderer_to_texture.cpp └── Renderer_to_texture.hpp ├── Simulator ├── OnlySimulator.h ├── Shapes.cpp ├── Shapes.hpp ├── Simulator.cpp ├── Simulator.hpp ├── container.cpp └── container.hpp └── Utils ├── Alarm.hpp ├── OscTools.hpp └── Singleton.hpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/README -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/TODO -------------------------------------------------------------------------------- /example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/example/Makefile -------------------------------------------------------------------------------- /example/addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/example/addons.make -------------------------------------------------------------------------------- /example/bin/data/verdana.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/example/bin/data/verdana.ttf -------------------------------------------------------------------------------- /example/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/example/config.make -------------------------------------------------------------------------------- /example/ofxTableGesturesExample-win.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/example/ofxTableGesturesExample-win.cbp -------------------------------------------------------------------------------- /example/ofxTableGesturesExample.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/example/ofxTableGesturesExample.cbp -------------------------------------------------------------------------------- /example/ofxTableGesturesExample.workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/example/ofxTableGesturesExample.workspace -------------------------------------------------------------------------------- /example/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/example/src/main.cpp -------------------------------------------------------------------------------- /example/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/example/src/testApp.cpp -------------------------------------------------------------------------------- /example/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/example/src/testApp.h -------------------------------------------------------------------------------- /install.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/install.xml -------------------------------------------------------------------------------- /src/Core/EventClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/src/Core/EventClient.hpp -------------------------------------------------------------------------------- /src/Core/FigureGraphic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/src/Core/FigureGraphic.hpp -------------------------------------------------------------------------------- /src/Core/Graphic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/src/Core/Graphic.cpp -------------------------------------------------------------------------------- /src/Core/Graphic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/src/Core/Graphic.hpp -------------------------------------------------------------------------------- /src/Core/GraphicDispatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/src/Core/GraphicDispatcher.cpp -------------------------------------------------------------------------------- /src/Core/GraphicDispatcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/src/Core/GraphicDispatcher.hpp -------------------------------------------------------------------------------- /src/Core/TableApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/src/Core/TableApp.cpp -------------------------------------------------------------------------------- /src/Core/TableApp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/src/Core/TableApp.hpp -------------------------------------------------------------------------------- /src/Feedback/CursorFeedback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/src/Feedback/CursorFeedback.cpp -------------------------------------------------------------------------------- /src/Feedback/CursorFeedback.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/src/Feedback/CursorFeedback.hpp -------------------------------------------------------------------------------- /src/Feedback/FigureFeedback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/src/Feedback/FigureFeedback.cpp -------------------------------------------------------------------------------- /src/Feedback/FigureFeedback.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/src/Feedback/FigureFeedback.hpp -------------------------------------------------------------------------------- /src/Feedback/HandFeedback.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/src/Feedback/HandFeedback.hpp -------------------------------------------------------------------------------- /src/Feedback/LongPushFeedback.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/src/Feedback/LongPushFeedback.hpp -------------------------------------------------------------------------------- /src/Feedback/TapFeedback.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/src/Feedback/TapFeedback.hpp -------------------------------------------------------------------------------- /src/Gestures/DirectPoint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/src/Gestures/DirectPoint.hpp -------------------------------------------------------------------------------- /src/Gestures/Events.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/src/Gestures/Events.hpp -------------------------------------------------------------------------------- /src/Gestures/Gestures-Extras/InputGestureHand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/src/Gestures/Gestures-Extras/InputGestureHand.cpp -------------------------------------------------------------------------------- /src/Gestures/Gestures-Extras/InputGestureHand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/src/Gestures/Gestures-Extras/InputGestureHand.hpp -------------------------------------------------------------------------------- /src/Gestures/Gestures-Extras/InputGestureLongPush.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/src/Gestures/Gestures-Extras/InputGestureLongPush.hpp -------------------------------------------------------------------------------- /src/Gestures/Gestures-Extras/InputGestureTap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/src/Gestures/Gestures-Extras/InputGestureTap.hpp -------------------------------------------------------------------------------- /src/Gestures/Gestures/InputGestureBasicFingers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/src/Gestures/Gestures/InputGestureBasicFingers.cpp -------------------------------------------------------------------------------- /src/Gestures/Gestures/InputGestureBasicFingers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/src/Gestures/Gestures/InputGestureBasicFingers.hpp -------------------------------------------------------------------------------- /src/Gestures/Gestures/InputGestureBasicObjects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/src/Gestures/Gestures/InputGestureBasicObjects.cpp -------------------------------------------------------------------------------- /src/Gestures/Gestures/InputGestureBasicObjects.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/src/Gestures/Gestures/InputGestureBasicObjects.hpp -------------------------------------------------------------------------------- /src/Gestures/Gestures/InputGestureDirectFingers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/src/Gestures/Gestures/InputGestureDirectFingers.cpp -------------------------------------------------------------------------------- /src/Gestures/Gestures/InputGestureDirectFingers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/src/Gestures/Gestures/InputGestureDirectFingers.hpp -------------------------------------------------------------------------------- /src/Gestures/Gestures/InputGestureDirectObjects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/src/Gestures/Gestures/InputGestureDirectObjects.cpp -------------------------------------------------------------------------------- /src/Gestures/Gestures/InputGestureDirectObjects.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/src/Gestures/Gestures/InputGestureDirectObjects.hpp -------------------------------------------------------------------------------- /src/Gestures/Gestures/InputGestureTuio1.1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/src/Gestures/Gestures/InputGestureTuio1.1.hpp -------------------------------------------------------------------------------- /src/Gestures/tuio1.1/InputGestureOsc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/src/Gestures/tuio1.1/InputGestureOsc.hpp -------------------------------------------------------------------------------- /src/Gestures/tuio1.1/InputGestureTuio1.12.5D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/src/Gestures/tuio1.1/InputGestureTuio1.12.5D.cpp -------------------------------------------------------------------------------- /src/Gestures/tuio1.1/InputGestureTuio1.12.5D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/src/Gestures/tuio1.1/InputGestureTuio1.12.5D.hpp -------------------------------------------------------------------------------- /src/Gestures/tuio1.1/InputGestureTuio1.12D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/src/Gestures/tuio1.1/InputGestureTuio1.12D.cpp -------------------------------------------------------------------------------- /src/Gestures/tuio1.1/InputGestureTuio1.12D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/src/Gestures/tuio1.1/InputGestureTuio1.12D.hpp -------------------------------------------------------------------------------- /src/Gestures/tuio1.1/InputGestureTuio1.13D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/src/Gestures/tuio1.1/InputGestureTuio1.13D.cpp -------------------------------------------------------------------------------- /src/Gestures/tuio1.1/InputGestureTuio1.13D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/src/Gestures/tuio1.1/InputGestureTuio1.13D.hpp -------------------------------------------------------------------------------- /src/Render/Grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/src/Render/Grid.cpp -------------------------------------------------------------------------------- /src/Render/Grid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/src/Render/Grid.hpp -------------------------------------------------------------------------------- /src/Render/Renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/src/Render/Renderer.cpp -------------------------------------------------------------------------------- /src/Render/Renderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/src/Render/Renderer.hpp -------------------------------------------------------------------------------- /src/Render/Renderer_plane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/src/Render/Renderer_plane.cpp -------------------------------------------------------------------------------- /src/Render/Renderer_plane.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/src/Render/Renderer_plane.hpp -------------------------------------------------------------------------------- /src/Render/Renderer_to_texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/src/Render/Renderer_to_texture.cpp -------------------------------------------------------------------------------- /src/Render/Renderer_to_texture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/src/Render/Renderer_to_texture.hpp -------------------------------------------------------------------------------- /src/Simulator/OnlySimulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/src/Simulator/OnlySimulator.h -------------------------------------------------------------------------------- /src/Simulator/Shapes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/src/Simulator/Shapes.cpp -------------------------------------------------------------------------------- /src/Simulator/Shapes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/src/Simulator/Shapes.hpp -------------------------------------------------------------------------------- /src/Simulator/Simulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/src/Simulator/Simulator.cpp -------------------------------------------------------------------------------- /src/Simulator/Simulator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/src/Simulator/Simulator.hpp -------------------------------------------------------------------------------- /src/Simulator/container.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/src/Simulator/container.cpp -------------------------------------------------------------------------------- /src/Simulator/container.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/src/Simulator/container.hpp -------------------------------------------------------------------------------- /src/Utils/Alarm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/src/Utils/Alarm.hpp -------------------------------------------------------------------------------- /src/Utils/OscTools.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/src/Utils/OscTools.hpp -------------------------------------------------------------------------------- /src/Utils/Singleton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaosct/ofxTableGestures/HEAD/src/Utils/Singleton.hpp --------------------------------------------------------------------------------