main
Last change
on this file was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 4 days ago |
F4 Finalna Verzija
|
-
Property mode
set to
100644
|
File size:
621 bytes
|
Rev | Line | |
---|
[79a0317] | 1 | import { RenderingContext2D } from '../types';
|
---|
| 2 | import Document from '../Document';
|
---|
| 3 | import Property from '../Property';
|
---|
| 4 | import Point from '../Point';
|
---|
| 5 | export default class Rotate {
|
---|
| 6 | type: string;
|
---|
| 7 | private readonly angle;
|
---|
| 8 | private readonly originX;
|
---|
| 9 | private readonly originY;
|
---|
| 10 | private readonly cx;
|
---|
| 11 | private readonly cy;
|
---|
| 12 | constructor(document: Document, rotate: string, transformOrigin: [Property<string>, Property<string>]);
|
---|
| 13 | apply(ctx: RenderingContext2D): void;
|
---|
| 14 | unapply(ctx: RenderingContext2D): void;
|
---|
| 15 | applyToPoint(point: Point): void;
|
---|
| 16 | }
|
---|
| 17 | //# sourceMappingURL=Rotate.d.ts.map |
---|
Note:
See
TracBrowser
for help on using the repository browser.