Processing系列 六边形漩涡
http://yuanren.cc/wp-content/uploads/2015/03/HexagonSwirl.png参数化绘图初级,活用了Processing的rotate函数
代码如下:
size(300, 300);
translate(width/2, height/2);
background(55);
stroke(255);
noFill();
float x = 0, y = 0, n = 6, radius = 10;
for (int j=0; j<25; j++) {
beginShape();
for (int i=0; i<n; i++) {
x = cos(TWO_PI/n*i)*radius;
y = sin(TWO_PI/n*i)*radius;
vertex(x, y);
}
endShape(CLOSE);
rotate(.05);
radius+=5;
}
授权转载自 任远媒体实验室
不错不错 厉害厉害 厉害厉害{:6_215:}{:6_215:}{:6_215:} 不错不错{:6_209:}{:6_209:}
页:
[1]