舞动的彩虹森林
本帖最后由 lisper 于 2016-4-11 17:19 编辑/*
author: lisper <leyapin@gmail.com> 2015
desc: 舞动的彩虹森林
*/
float nx = 0;
float ny = 0;
float nz = 0;
void setup () {
size (600, 600);
colorMode (HSB);
}
void draw () {
background (0);
drawStream ();
}
void drawStream () {
float angle;
int step = 10;
int leng = step*5;
nx = 0;
for (int i=0; i<width; i+=step) {
ny = 0;
for (int j=0; j<width; j+=step) {
angle = map (noise (nx, ny, nz), 0, 1.0, 0, 7*PI);
float x = leng * cos (angle);
float y = leng * sin (angle);
stroke ( map (angle, 0, 6*PI, 0, 255), 255, 255);
line (i, j, i+x, j+y);
ny += 0.05;
}
nx += 0.05;
}
nz +=0.01;
}
Eric 发表于 2016-4-13 22:47
点赞点赞,哈哈哈哈
低调一点。。。 点赞点赞,哈哈哈哈
Osin 发表于 2016-4-13 10:42
点赞按键在哪里
好像没有这个功能。。。 点赞按键在哪里 virtualwiz 发表于 2016-4-12 17:45
真漂亮
你知道吗? dsweiliang 发表于 2016-4-12 08:27
玄幻的彩虹
你知道? iooops 发表于 2016-4-13 09:27
哼..
哼哼??? hnyzcj 发表于 2016-4-12 07:33
我是我呀,你不再微信发的吗
额,不知道 哼.. 真漂亮 玄幻的彩虹 processing lisper 发表于 2016-4-12 00:00
你是???
我是我呀,你不再微信发的吗 hnyzcj 发表于 2016-4-11 21:53
很漂亮,你要离开上海?到哪里玩?
你是???
很漂亮,你要离开上海?到哪里玩?
页:
[1]