var TriangleMesh = toxi.geom.mesh.TriangleMesh,
Face = toxi.geom.mesh.Face,
Vec3D = toxi.geom.Vec3D,
Vec2D = toxi.geom.Vec2D;
import toxi.geom.*;
import toxi.geom.mesh.*;
TriangleMesh mesh=new TriangleMesh("doodle");
Vec3D prev=new Vec3D();
Vec3D p=new Vec3D();
Vec3D q=new Vec3D();
Vec2D rotation=new Vec2D();
float weight=0;
void setup() {
size(940,600,OPENGL);
fill(255,255,255);
stroke(255,0,0);
}
void draw() {
background(0);
lights();
translate(width/2,height/2,0);
rotateX(rotation.x);
rotateY(rotation.y);
noStroke();
beginShape(TRIANGLES);