ofxBlackBox: openFramework multiTouch GUI

Despite the cheesy name, the goal is to make an addon for openFrameworks with a minimalist aesthetic orientation.
It is fully compatible with TUIO and objects can be dragged, resized, and rotated with two fingers.
This boxes can be setup using a xml file. There you can specify the type and order of the content object.

Code at: github.com/patriciogonzalezvivo/ofxBlackBox

Share

ofxKeyboard 0.3 ( openFramework version of Tiper3)

I start this project in Processing for a multiTouch sketch. The idea was to make a keyboard map maker in order to make my own distribution of keys for a super configurable tools. So, you can make your owns keyboards or control remotes for any multiTouch/TUIO projects.
So I wrote to different sketches (one for the keyboard and the other for the maker)
Then I migrated to openFrameworks. It still use the same type of config file (one that ends with .kbd) for storing the key distribution. For it, uses polar geometry in order to let it be rotate, scale and drag and continue to be 100% functional.
On openFrameworks uses ofEvents to handles the pressed keys and need the next addons:
- ofxOsc
- OfxTUIO
- MSAcore
You can download the code and examples at: http://code.google.com/p/ofxkeyboard/
[ Note about the .kbd: The first line have the information of the keyboard. Center x and y, the width and height. And the other ones are the keys with their position (on radio and angle), width and height. ]
Share