UNPKG

179 BJavaScriptView Raw
1export class CircleDrawer {
2 getSidesCount() {
3 return 12;
4 }
5 draw(context, particle, radius) {
6 context.arc(0, 0, radius, 0, Math.PI * 2, false);
7 }
8}