import I_BoundingBox from '../BoundingBox/I_BoundingBox'; import I_Vector from '../Vector/I_Vector'; import I_Line from '../Line/I_Line'; export default class Shape { readonly points: I_Vector[]; readonly lines: I_Line[]; constructor(points: I_Vector[]); get boundingBox(): I_BoundingBox; containsPoint(point: I_Vector): boolean; get centroid(): I_Vector; private static makeLines; } //# sourceMappingURL=Shape.d.ts.map