Home
Welcome to the prender wiki!
PRender is a python module you can use to drive a Processing renderer subprocess. Like this:
from prender import processing pr = processing.BaseRenderer() pr.start(200,200) pr.line(0,0,100,100) pr.line(0,100,100,0) pr.saveLocal( “x.png” ) pr.stop()Thread on Processing.org Forum: http://processing.org/discourse/yabb2/YaBB.pl?num=1235712200
