|
1 /* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
|
2 /* This Source Code Form is subject to the terms of the Mozilla Public |
|
3 * License, v. 2.0. If a copy of the MPL was not distributed with this file, |
|
4 * You can obtain one at http://mozilla.org/MPL/2.0/. |
|
5 * |
|
6 * The origin of this IDL file is |
|
7 * http://www.w3.org/TR/SVG2/ |
|
8 * |
|
9 * Copyright © 2012 W3C® (MIT, ERCIM, Keio), All Rights Reserved. W3C |
|
10 * liability, trademark and document use rules apply. |
|
11 */ |
|
12 interface SVGPathElement : SVGGraphicsElement { |
|
13 |
|
14 readonly attribute SVGAnimatedNumber pathLength; |
|
15 |
|
16 [Throws] |
|
17 float getTotalLength(); |
|
18 [NewObject, Throws] |
|
19 SVGPoint getPointAtLength(float distance); |
|
20 unsigned long getPathSegAtLength(float distance); |
|
21 [NewObject] |
|
22 SVGPathSegClosePath createSVGPathSegClosePath(); |
|
23 [NewObject] |
|
24 SVGPathSegMovetoAbs createSVGPathSegMovetoAbs(float x, float y); |
|
25 [NewObject] |
|
26 SVGPathSegMovetoRel createSVGPathSegMovetoRel(float x, float y); |
|
27 [NewObject] |
|
28 SVGPathSegLinetoAbs createSVGPathSegLinetoAbs(float x, float y); |
|
29 [NewObject] |
|
30 SVGPathSegLinetoRel createSVGPathSegLinetoRel(float x, float y); |
|
31 [NewObject] |
|
32 SVGPathSegCurvetoCubicAbs createSVGPathSegCurvetoCubicAbs(float x, float y, float x1, float y1, float x2, float y2); |
|
33 [NewObject] |
|
34 SVGPathSegCurvetoCubicRel createSVGPathSegCurvetoCubicRel(float x, float y, float x1, float y1, float x2, float y2); |
|
35 [NewObject] |
|
36 SVGPathSegCurvetoQuadraticAbs createSVGPathSegCurvetoQuadraticAbs(float x, float y, float x1, float y1); |
|
37 [NewObject] |
|
38 SVGPathSegCurvetoQuadraticRel createSVGPathSegCurvetoQuadraticRel(float x, float y, float x1, float y1); |
|
39 [NewObject] |
|
40 SVGPathSegArcAbs createSVGPathSegArcAbs(float x, float y, float r1, float r2, float angle, boolean largeArcFlag, boolean sweepFlag); |
|
41 [NewObject] |
|
42 SVGPathSegArcRel createSVGPathSegArcRel(float x, float y, float r1, float r2, float angle, boolean largeArcFlag, boolean sweepFlag); |
|
43 [NewObject] |
|
44 SVGPathSegLinetoHorizontalAbs createSVGPathSegLinetoHorizontalAbs(float x); |
|
45 [NewObject] |
|
46 SVGPathSegLinetoHorizontalRel createSVGPathSegLinetoHorizontalRel(float x); |
|
47 [NewObject] |
|
48 SVGPathSegLinetoVerticalAbs createSVGPathSegLinetoVerticalAbs(float y); |
|
49 [NewObject] |
|
50 SVGPathSegLinetoVerticalRel createSVGPathSegLinetoVerticalRel(float y); |
|
51 [NewObject] |
|
52 SVGPathSegCurvetoCubicSmoothAbs createSVGPathSegCurvetoCubicSmoothAbs(float x, float y, float x2, float y2); |
|
53 [NewObject] |
|
54 SVGPathSegCurvetoCubicSmoothRel createSVGPathSegCurvetoCubicSmoothRel(float x, float y, float x2, float y2); |
|
55 [NewObject] |
|
56 SVGPathSegCurvetoQuadraticSmoothAbs createSVGPathSegCurvetoQuadraticSmoothAbs(float x, float y); |
|
57 [NewObject] |
|
58 SVGPathSegCurvetoQuadraticSmoothRel createSVGPathSegCurvetoQuadraticSmoothRel(float x, float y); |
|
59 }; |
|
60 |
|
61 SVGPathElement implements SVGAnimatedPathData; |
|
62 |