Open main menu

CDOT Wiki β

Changes

FSOSS 2010/processing.js/box1

286 bytes added, 14:00, 26 October 2010
Created page with '<source lang="JavaScript"> import processing.opengl.*; void setup() { size(400, 400, OPENGL); } void draw() { background(#336699); // center in the canvas translate(w…'
<source lang="JavaScript">
import processing.opengl.*;

void setup()
{
size(400, 400, OPENGL);
}

void draw()
{
background(#336699);

// center in the canvas
translate(width/2, height/2, 150);

rotateY(radians(45));

rotateX( frameCount/250.0f );

box(50);
}
</source>
1
edit