topical media & game development

talk show tell print

graphic-processing-site-examples-3D-Lights-Lights1-Lights1.pde / pde



  
Lights 1. Uses the default lights to show a simple box. The lights() function is used to turn on the default lighting.

  
   
  float spin = 0.0;
  
  void setup() 
  {
    size(640, 360, P3D);
    noStroke();
  }
  
  void draw() 
  {
    background(51);
    lights();
    
    spin += 0.01;
    
    pushMatrix();
    translate(width/2, height/2, 0);
    rotateX(PI/9);
    rotateY(PI/5 + spin);
    box(150);
    popMatrix();
  }
  


(C) Æliens 20/2/2008

You may not copy or print any of this material without explicit permission of the author or the publisher. In case of other copyright issues, contact the author.