UNPKG

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