Book Image

OpenFrameworks Essentials

Book Image

OpenFrameworks Essentials

Overview of this book

Table of Contents (19 chapters)
openFrameworks Essentials
Credits
Foreword
About the Authors
About the Reviewers
www.PacktPub.com
Preface
Index

iOS and Android versions


The video synthesizers for iOS and Android are light versions of the desktop project. They are considered in Chapter 8, Deploying the Project on iOS, Android, and Raspberry Pi, and include only the matrix pattern generator and the GUI panel. Instead of using the control keys, it uses the double-tap to toggle the GUI. Additionally, these projects use an accelerometer to control two sliders.

The openFrameworks project and source files

The project's code structure is the following:

  • The project uses the ofxGui addon. It is linked to the project using the Pattern Generator wizard for the iOS version. For the Android version, the project is started by copying the example, which has already linked the ofxGui addon.

  • The project's source files are ofApp.h and ofApp.mm for iOS and ofApp.h and ofApp.cpp for Android. They are placed in the src folder of the project.

Data files

The project writes and reads its GUI state to the settings.xml file.

The GUI

A GUI panel includes basic sliders and Global and Primitive groups described in the previous The GUI controls section under the The desktop version section.

Touches

A double-tap toggles the GUI visibility.

Accelerometer

The accelerometer values control the twistX and twistY sliders.