source: imaps-frontend/node_modules/canvg/lib/Transform/Rotate.d.ts

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
RevLine 
[79a0317]1import { RenderingContext2D } from '../types';
2import Document from '../Document';
3import Property from '../Property';
4import Point from '../Point';
5export 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.