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:
771 bytes
|
Rev | Line | |
---|
[79a0317] | 1 | import { TransformFunction } from "./types";
|
---|
| 2 | export declare abstract class TransformableSVG {
|
---|
| 3 | round(x?: number): this;
|
---|
| 4 | toAbs(): this;
|
---|
| 5 | toRel(): this;
|
---|
| 6 | normalizeHVZ(a?: boolean, b?: boolean, c?: boolean): this;
|
---|
| 7 | normalizeST(): this;
|
---|
| 8 | qtToC(): this;
|
---|
| 9 | aToC(): this;
|
---|
| 10 | sanitize(eps?: number): this;
|
---|
| 11 | translate(x: number, y?: number): this;
|
---|
| 12 | scale(x: number, y?: number): this;
|
---|
| 13 | rotate(a: number, x?: number, y?: number): this;
|
---|
| 14 | matrix(a: number, b: number, c: number, d: number, e: number, f: number): this;
|
---|
| 15 | skewX(a: number): this;
|
---|
| 16 | skewY(a: number): this;
|
---|
| 17 | xSymmetry(xOffset?: number): this;
|
---|
| 18 | ySymmetry(yOffset?: number): this;
|
---|
| 19 | annotateArcs(): this;
|
---|
| 20 | abstract transform(transformFunction: TransformFunction): this;
|
---|
| 21 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.