UNPKG

315 BTypeScriptView Raw
1import type { IShapeDrawer } from "../Core/Interfaces/IShapeDrawer";
2import type { IParticle } from "../Core/Interfaces/IParticle";
3export declare class LineDrawer implements IShapeDrawer {
4 getSidesCount(): number;
5 draw(context: CanvasRenderingContext2D, particle: IParticle, radius: number): void;
6}