首页 > 代码库 > processing box

processing box

void setup() {

  size(200, 200, P3D);

  noFill();

  smooth();

}


void draw() {

  background(0);

  

  translate(width/2, height/2, -(width/2));

  rotateY(map(mouseX, 0, width, -PI, PI));

  stroke(100);

  box(150);

  

  rotateX(map(mouseY, 0, height, -PI, PI));

  stroke(150);

  box(75);

}


本文出自 “processing” 博客,请务必保留此出处http://dazhou.blog.51cto.com/2604246/1549771

processing box