2017-09-13から1日間の記事一覧

array_PVector_vertex01

int num = 100; PVector[] pos; color[] c; void setup() { size(500, 500); colorMode(HSB, 360, 100, 100, 100); noStroke(); background(0, 0, 100); smooth(); mousePressed(); } void draw() { for (int i = 3; i < num; i ++) { fill(c[i]); beginShap…