mindjack/static/icons/icon.asy

18 lines
344 B
Plaintext
Raw Normal View History

2020-06-22 03:03:07 -04:00
real circleradius = 160;
2018-11-24 14:53:56 -05:00
2020-06-22 03:03:07 -04:00
path circ = circle((0,0), circleradius);
fill(circ, red);
2018-11-24 14:53:56 -05:00
2020-06-22 03:03:07 -04:00
guide spiral;
real curveFunc(real theta10) {
return 0.008*theta10*theta10 + 0.2*theta10;
}
for (int i = 0; i < 200; i += 1) {
spiral = (curveFunc(i)*dir(10*i))..spiral..(curveFunc(i)*dir(180+10*i));
2018-11-24 14:53:56 -05:00
}
2020-06-22 03:03:07 -04:00
path p = buildcycle(spiral, circ);
fill(p, black);