UNPKG

370 BTypeScriptView Raw
1import type { ISide } from "./PolygonDrawerBase";
2import { PolygonDrawerBase } from "./PolygonDrawerBase";
3import type { ICoordinates, IParticle } from "../../Core/Interfaces";
4export declare class PolygonDrawer extends PolygonDrawerBase {
5 getSidesData(particle: IParticle, radius: number): ISide;
6 getCenter(particle: IParticle, radius: number): ICoordinates;
7}