main
Last change
on this file since 79a0317 was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 3 days ago |
F4 Finalna Verzija
|
-
Property mode
set to
100644
|
File size:
403 bytes
|
Rev | Line | |
---|
[79a0317] | 1 | export default class Point {
|
---|
| 2 | x: number;
|
---|
| 3 | y: number;
|
---|
| 4 | static parse(point: string, defaultValue?: number): Point;
|
---|
| 5 | static parseScale(scale: string, defaultValue?: number): Point;
|
---|
| 6 | static parsePath(path: string): Point[];
|
---|
| 7 | constructor(x: number, y: number);
|
---|
| 8 | angleTo(point: Point): number;
|
---|
| 9 | applyTransform(transform: number[]): void;
|
---|
| 10 | }
|
---|
| 11 | //# sourceMappingURL=Point.d.ts.map |
---|
Note:
See
TracBrowser
for help on using the repository browser.