AIExport for beta is here:
http://processing.org/discourse/yabb_beta/YaBB.cgi?board=os_libraries_tools;action=display;num=1114686460;start=1
here's a little dated thread from the old alpha board on "from processing to paper":
http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_Software;action=display;num=1038136331
F
note that it used to be possible to create your own PGraphics object, this is currently not working! if it were you could just draw into that and then draw the PGraphics to the screen like an image:
Code:
// note this is currently not working!
PGraphics pg;
void setup()
{
size( 200, 200 );
pg = new PGraphics( 400, 400, null );
}
void draw()
{
pg.background( 255 );
pg.fill( 255 ); pg.stroke( 125 );
pg.line( 0,0, pg.width, pg.height );
image( pg, 0,0, width, height );
}
http://processing.org/discourse/yabb_beta/YaBB.cgi?board=Programs;action=display;num=1115857966;start=1