OLD | NEW |
| (Empty) |
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | |
2 // for details. All rights reserved. Use of this source code is governed by a | |
3 // BSD-style license that can be found in the LICENSE file. | |
4 | |
5 // WARNING: Do not edit - generated code. | |
6 | |
7 interface SVGPathSeg { | |
8 | |
9 static final int PATHSEG_ARC_ABS = 10; | |
10 | |
11 static final int PATHSEG_ARC_REL = 11; | |
12 | |
13 static final int PATHSEG_CLOSEPATH = 1; | |
14 | |
15 static final int PATHSEG_CURVETO_CUBIC_ABS = 6; | |
16 | |
17 static final int PATHSEG_CURVETO_CUBIC_REL = 7; | |
18 | |
19 static final int PATHSEG_CURVETO_CUBIC_SMOOTH_ABS = 16; | |
20 | |
21 static final int PATHSEG_CURVETO_CUBIC_SMOOTH_REL = 17; | |
22 | |
23 static final int PATHSEG_CURVETO_QUADRATIC_ABS = 8; | |
24 | |
25 static final int PATHSEG_CURVETO_QUADRATIC_REL = 9; | |
26 | |
27 static final int PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS = 18; | |
28 | |
29 static final int PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL = 19; | |
30 | |
31 static final int PATHSEG_LINETO_ABS = 4; | |
32 | |
33 static final int PATHSEG_LINETO_HORIZONTAL_ABS = 12; | |
34 | |
35 static final int PATHSEG_LINETO_HORIZONTAL_REL = 13; | |
36 | |
37 static final int PATHSEG_LINETO_REL = 5; | |
38 | |
39 static final int PATHSEG_LINETO_VERTICAL_ABS = 14; | |
40 | |
41 static final int PATHSEG_LINETO_VERTICAL_REL = 15; | |
42 | |
43 static final int PATHSEG_MOVETO_ABS = 2; | |
44 | |
45 static final int PATHSEG_MOVETO_REL = 3; | |
46 | |
47 static final int PATHSEG_UNKNOWN = 0; | |
48 | |
49 int get pathSegType(); | |
50 | |
51 String get pathSegTypeAsLetter(); | |
52 } | |
OLD | NEW |