码迷,mamicode.com
首页 > 其他好文 > 详细

processing box

时间:2014-09-09 09:10:49      阅读:348      评论:0      收藏:0      [点我收藏+]

标签:processing rotate   processing translate   

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

标签:processing rotate   processing translate   

原文地址:http://dazhou.blog.51cto.com/2604246/1549771

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!