@cantoo/pdf-lib
Version:
Create and modify PDF files with JavaScript
22 lines • 554 B
TypeScript
import GraphElement from './GraphElement';
import Point from './Point';
export default class Rectangle extends GraphElement {
static type: string;
start: Point;
end: Point;
constructor(start?: Point, end?: Point);
getSize(): {
width: number;
height: number;
};
getCoords(): {
x: number;
y: number;
};
getStart(): Point;
getEnd(): Point;
center(): Point;
isEqual(element: GraphElement): boolean;
orthoProjection(P: Point): Point;
}
//# sourceMappingURL=Rectangle.d.ts.map