UNPKG

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