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

【processing】小代码4

时间:2014-10-15 00:35:19      阅读:311      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   strong   sp   div   2014   on   

translate(x,y);  移动坐标原点到x,y处

rotate(angle); 坐标沿原点顺时针转动angle度

scale(n); 绘制图像放大n倍

pushMatrix() 将当前坐标压入栈

popMatrix() 将坐标弹栈

--------------------------------------

windows系统下 用P3D一直报错,检查的时候还把之前写好的东西给弄没了  郁闷 换linux 终于可以显示了 但是smooth()不能用,说我硬件不支持。 而且linux下写的代码拷不出来,贴个图,凑合吧。

bubuko.com,布布扣bubuko.com,布布扣

两个方形沿不同的坐标转。

-------------------------------------------------------------------------------------

millis():毫秒

second() 秒

minute() 分

hour() 小时

void setup()
{
  size(300,300);
}
void draw()
{
  background(0);
  int ms = millis();
  int s = second();
  int m = minute();
  int h = hour();
  fill(255,0,0,100);
  rect(ms/100,0,30,70);
  fill(0,255,0,100);
  rect(s*2,75,30,70);
  fill(0,0,255,100);
  rect(m,150,30,70);
  fill(0,255,255,100);
  rect(h,225,30,70);
}

四个小矩形会根据时间运动

------------------------------------------------------

定义函数:跟C语言一样

-----------------------------------------------------

定义类:

class NAME
{
  变量;
  NAME(.......){.....} //构造函数
  功能函数1;
  功能函数2;
  ...
}
----------------------------------------------------------------

数组:跟C++差不多

int [] number = new int[6];

 

【processing】小代码4

标签:style   blog   http   color   strong   sp   div   2014   on   

原文地址:http://www.cnblogs.com/dplearning/p/4025356.html

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