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();

Posted in Courses, Multitouch Interaction, Multitouch Interaction 2015 | Leave a comment

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

Posted in Courses, Multitouch Interaction, Multitouch Interaction 2015 | Leave a comment

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

Posted in Multitouch Interaction 2014, openFrameworks | Leave a comment

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