import processing.video.*;

Capture video;
PFont font;
float x, y;
float rot;

void setup(){
size (800,800);
video=new Capture (this, 800,800,15);
video.start();
font =loadFont(“Arial-BoldMT-32.vlw”);
textFont(font);
}

void draw(){
if (video.available()){
video.read();}
image (video,0,0);
if( mousePressed) {
text(“this is a you inside a computer inside a space”, 25, 100);}
if (keyPressed) {
text (“”,100, 100);
}}