UNPKG

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