include the code used to gen these gfx

pull/1/head
Matthew Hodgson 2015-07-18 19:11:39 +01:00
parent ea8737d957
commit 27d19f2ec8
1 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,19 @@
// a trivial processing.org snippet to generate these
// using java2d (ugh). Peity and JS might have been
// a better idea. Or SVG.
size(48, 48);
g = createGraphics(48, 48, JAVA2D);
for (int i = 0; i <= 20; i++) {
g.beginDraw();
g.background(0.0, 0.0);
g.smooth();
g.strokeCap(SQUARE);
g.strokeWeight(3);
g.stroke(0x80, 0xcf, 0xf4, 255.0);
g.fill(0.0, 0.0);
g.arc(24, 24, 43, 43, -PI/2, -PI/2 + (i*2*PI/20.0));
g.save("p" + i + ".png");
g.endDraw();
}