Book Image

Multimedia Programming Using Max/MSP and TouchDesigner

By : Patrik Lechner
Book Image

Multimedia Programming Using Max/MSP and TouchDesigner

By: Patrik Lechner

Overview of this book

Max 6 and TouchDesigner are both high-level visual programming languages based on the metaphor of connecting computational objects with patch cords. This guide will teach you how to design and build high-quality audio-visual systems in Max 6 and TouchDesigner, giving you competence in both designing and using these real-time systems. In the first few chapters, you will learn the basics of designing tools to generate audio-visual experiences through easy-to-follow instructions aimed at beginners and intermediate. Then, we combine tools such as Gen, Jitter, and TouchDesigner to work along with Max 6 to create 2D and 3D visualizations, this book provides you with tutorials based on creating generative art synchronized to audio. By the end of the book, you will be able to design and structure highly interactive, real-time systems.
Table of Contents (19 chapters)
Multimedia Programming Using Max/MSP and TouchDesigner
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Multi-touch screens


As soon as you have mastered TouchDesigner and Max, multi-touch screens shouldn't be much of a problem for you. Since Microsoft Windows 7, we have native multi-touch that is piped to any application. Max can't do anything with multi-touch, but is OK with single-touch events. So if you have a touchscreen, you can just fire up your Max patch GUI and start playing around with it. If you'd like to use multi-touch, one way to do this is to build an interface with TouchDesigner. Inside TD, we have no problems whatsoever using any standard multi-touch screen, and we can just send our controls to Max via OSC if we need to control a Max patch.

How is multi-touch used inside TD? We can just use a regular Container COMP, and it will react to multi-touch input just as it would when we click on it with the mouse. However, there is also multi-touch in DAT that gives us either raw data or a table that shows us all touch events with an index number per finger as follows:

This table can...