├── .gitignore ├── .gitmodules ├── FingerMgmt.xcworkspace └── contents.xcworkspacedata └── FingerMgmt ├── Classes ├── AppDelegate.h ├── AppDelegate.m ├── CeedGL+Additions.h ├── CeedGL+Additions.m ├── TouchPoint.h ├── TouchPoint.m ├── TouchView.h ├── TouchView.m ├── TrackpadView.h └── TrackpadView.m ├── FingerMgmt.h ├── FingerMgmt.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── Info.plist ├── MainMenu.xib ├── MultiTouch.h ├── Shaders ├── effect.fsh ├── effect.vsh ├── touchPoint.fsh ├── touchPoint.vsh ├── trails.fsh └── trails.vsh ├── main.m ├── prefix.pch └── toichview-old.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnordberg/FingerMgmt/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnordberg/FingerMgmt/HEAD/.gitmodules -------------------------------------------------------------------------------- /FingerMgmt.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnordberg/FingerMgmt/HEAD/FingerMgmt.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FingerMgmt/Classes/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnordberg/FingerMgmt/HEAD/FingerMgmt/Classes/AppDelegate.h -------------------------------------------------------------------------------- /FingerMgmt/Classes/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnordberg/FingerMgmt/HEAD/FingerMgmt/Classes/AppDelegate.m -------------------------------------------------------------------------------- /FingerMgmt/Classes/CeedGL+Additions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnordberg/FingerMgmt/HEAD/FingerMgmt/Classes/CeedGL+Additions.h -------------------------------------------------------------------------------- /FingerMgmt/Classes/CeedGL+Additions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnordberg/FingerMgmt/HEAD/FingerMgmt/Classes/CeedGL+Additions.m -------------------------------------------------------------------------------- /FingerMgmt/Classes/TouchPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnordberg/FingerMgmt/HEAD/FingerMgmt/Classes/TouchPoint.h -------------------------------------------------------------------------------- /FingerMgmt/Classes/TouchPoint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnordberg/FingerMgmt/HEAD/FingerMgmt/Classes/TouchPoint.m -------------------------------------------------------------------------------- /FingerMgmt/Classes/TouchView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnordberg/FingerMgmt/HEAD/FingerMgmt/Classes/TouchView.h -------------------------------------------------------------------------------- /FingerMgmt/Classes/TouchView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnordberg/FingerMgmt/HEAD/FingerMgmt/Classes/TouchView.m -------------------------------------------------------------------------------- /FingerMgmt/Classes/TrackpadView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnordberg/FingerMgmt/HEAD/FingerMgmt/Classes/TrackpadView.h -------------------------------------------------------------------------------- /FingerMgmt/Classes/TrackpadView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnordberg/FingerMgmt/HEAD/FingerMgmt/Classes/TrackpadView.m -------------------------------------------------------------------------------- /FingerMgmt/FingerMgmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnordberg/FingerMgmt/HEAD/FingerMgmt/FingerMgmt.h -------------------------------------------------------------------------------- /FingerMgmt/FingerMgmt.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnordberg/FingerMgmt/HEAD/FingerMgmt/FingerMgmt.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FingerMgmt/FingerMgmt.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnordberg/FingerMgmt/HEAD/FingerMgmt/FingerMgmt.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FingerMgmt/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnordberg/FingerMgmt/HEAD/FingerMgmt/Info.plist -------------------------------------------------------------------------------- /FingerMgmt/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnordberg/FingerMgmt/HEAD/FingerMgmt/MainMenu.xib -------------------------------------------------------------------------------- /FingerMgmt/MultiTouch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnordberg/FingerMgmt/HEAD/FingerMgmt/MultiTouch.h -------------------------------------------------------------------------------- /FingerMgmt/Shaders/effect.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnordberg/FingerMgmt/HEAD/FingerMgmt/Shaders/effect.fsh -------------------------------------------------------------------------------- /FingerMgmt/Shaders/effect.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnordberg/FingerMgmt/HEAD/FingerMgmt/Shaders/effect.vsh -------------------------------------------------------------------------------- /FingerMgmt/Shaders/touchPoint.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnordberg/FingerMgmt/HEAD/FingerMgmt/Shaders/touchPoint.fsh -------------------------------------------------------------------------------- /FingerMgmt/Shaders/touchPoint.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnordberg/FingerMgmt/HEAD/FingerMgmt/Shaders/touchPoint.vsh -------------------------------------------------------------------------------- /FingerMgmt/Shaders/trails.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnordberg/FingerMgmt/HEAD/FingerMgmt/Shaders/trails.fsh -------------------------------------------------------------------------------- /FingerMgmt/Shaders/trails.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnordberg/FingerMgmt/HEAD/FingerMgmt/Shaders/trails.vsh -------------------------------------------------------------------------------- /FingerMgmt/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnordberg/FingerMgmt/HEAD/FingerMgmt/main.m -------------------------------------------------------------------------------- /FingerMgmt/prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnordberg/FingerMgmt/HEAD/FingerMgmt/prefix.pch -------------------------------------------------------------------------------- /FingerMgmt/toichview-old.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnordberg/FingerMgmt/HEAD/FingerMgmt/toichview-old.m --------------------------------------------------------------------------------