import oscP5.*; import netP5.*; import tuioZones.*; TUIOzoneCollection zones; PFont font; void setup(){ size(screen.width,screen.height); zones=new TUIOzoneCollection(this); zones.setZone("zone1", width/2,height/2,300); smooth(); font = loadFont("Serif-24.vlw"); textFont(font); } void draw(){ background(0); fill (150); zones.drawCirc("zone1"); fill (0); float rot = zones.getGestureRotation("zone1"); translate(width/2, height/2); rotate(rot*2*PI); text("rotate me",0,0); }