1 | import { MatrixValue } from './types';
|
2 | export declare class Point {
|
3 | x: number;
|
4 | y: number;
|
5 | static parse(point: string, defaultValue?: number): Point;
|
6 | static parseScale(scale: string, defaultValue?: number): Point;
|
7 | static parsePath(path: string): Point[];
|
8 | constructor(x: number, y: number);
|
9 | angleTo(point: Point): number;
|
10 | applyTransform(transform: MatrixValue): void;
|
11 | }
|
12 | //# sourceMappingURL=Point.d.ts.map |
\ | No newline at end of file |