UNPKG

214 BJavaScriptView Raw
1/**
2 * @category Shape Drawers
3 */
4export class CircleDrawer {
5 getSidesCount() {
6 return 12;
7 }
8 draw(context, particle, radius) {
9 context.arc(0, 0, radius, 0, Math.PI * 2, false);
10 }
11}