@cantoo/pdf-lib
Version:
Create and modify PDF files with JavaScript
21 lines • 597 B
TypeScript
import { Size } from '../../types';
import GraphElement from './GraphElement';
import Point from './Point';
import Segment from './Segment';
export default class Ellipse extends GraphElement {
A: Point;
B: Point;
C: Point;
constructor(A?: Point, B?: Point, C?: Point);
center(): Point;
axis(): Segment;
a(): number;
b(): number;
rotation(): number;
getSize(): Size;
isEqual(element: GraphElement): boolean;
includes(P: Point): boolean;
orthoProjection(P: Point): Point;
polarRay(teta: number): number;
}
//# sourceMappingURL=Ellipse.d.ts.map