-
Authors
Tags
openFrameworks Links
Media and Data Resources
Other Links
- Adobe Flash Developer Center
- Arduino
- C4ios
- Cinder
- Cocos2D
- Corona SDK
- Flight 404 (Robert Hodgin, Cinder)
- Form+Code – code examples
- Kinect Hacks
- libpd
- Max/MSP/Jitter
- Multimedia Development (Flash)
- NodeBox
- OpenSceneGraph
- PhoneGap
- Pocode
- Pure Data
- Quartz Composer
- Software Studies (Processing, HTML5/JS)
- Sparrow Framework
- TestFlight
- TouchDesigner
- Unity
- vvvv
- Web Media Development (JavaScript)
- Xcode
Meta
Category Archives: Multitouch Interaction
Zoo – Lisa
– two finger to create a new animal – three finger to create a new plant – four finger select and move/delete – double tap to choose object – single finger move to change color
Posted in Multitouch Interaction 2015
1 Comment
Project Proposals
On 19 May you will present your project proposals for Multitouch Interaction 2015. Project requirements: The project can be any application that involves multitouch interaction. The projects “examples/iOS” in openFrameworks can be used for inspiration. Also check other oF resources, … Continue reading
Posted in Multitouch Interaction 2015
Leave a comment
making the simulator work
Here is a hack to make the simulator work with the current version of OpenFrameworks and Xcode 6. Add the following piece of code in the very end of main.mm (after the curly bracket of int main()</ closes. extern “C”{ … Continue reading
Posted in Multitouch Interaction 2015
Leave a comment
enable Retina support
To enable retina support in your project go to main.mm. replace the standard line: ofSetupOpenGL(1024,768,OF_FULLSCREEN);// with: ofAppiOSWindow * iOSWindow = new ofAppiOSWindow(); ofSetupOpenGL(iOSWindow, 1024, 768, OF_FULLSCREEN); iOSWindow->enableRetina();
Preparations for the course
Note: these instructions were sent to all participants registered for Multitouch Interaction 2015. The teaching will use iOS devices, which means that there are a few requirements in order to be able to run projects on physical devices. In order … Continue reading
Multitouch Interaction 2015 – overview
The course focuses on using multitouch interaction to create engaging experiences on mobile devices (focus: smartphones/tablets). The course concentrates on the iOS platform, but for their own projects students can also use other platforms. The main development environment for the … Continue reading
Posted in Multitouch Interaction 2015
Leave a comment
Multitouch Interaction @ Media Lab Helsinki 03/2014
Video and photo documentation from the Multitouch Interaction 2014 course: Thank you: course participants openFrameworks community More info on individual projects: mlab.taik.fi/mediacode/c/courses-projects/mti2014 Music: John Roberts – Palace – Dial Records beatport.com/track/palace-original-mix/4331741
Posted in Multitouch Interaction 2014
Leave a comment
Multitouch Interaction – project presentations
We will have project presentations from the Multitouch Interaction course tomorrow (14/March) at 10am. Location: Media Lab (Otaniemi campus, Miestentie 3), 5th floor computer room. Everybody’s welcome. You can get an idea of the around 13 projects that will be presented (mostly … Continue reading
Posted in Multitouch Interaction 2014
Leave a comment
Using addons in openFrameworks (such as ofxBox2d)
Using addons in openFrameworks might create problems, compiler errors, files not found etc. Therefore, I recommend that you use projectGenerator, an app that comes within the openFrameworks folder (inside the “projectGenerator” folder). More info:Â http://www.openframeworks.cc/tutorials/introduction/002_projectGenerator.html (note: in ofxBox2d, testApp.h, there is … Continue reading
RGB Blender
I would like to make RGB blender app. Tapping top color pot, each color will drop to bottom, and blended. The reason why I want to make this is, I am bad at imaging to mix color. Also if there … Continue reading
Posted in Multitouch Interaction 2014
Leave a comment