Difference between revisions of "FSOSS 2010/processing.js/box1"

From CDOT Wiki
Jump to: navigation, search
(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…')
(No difference)

Revision as of 14:00, 26 October 2010

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);
}