OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2010, Google Inc. | 2 * Copyright 2010, Google Inc. |
3 * All rights reserved. | 3 * All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
7 * met: | 7 * met: |
8 * | 8 * |
9 * * Redistributions of source code must retain the above copyright | 9 * * Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 The x coordinate of the top-left corner of this layer. | 52 The x coordinate of the top-left corner of this layer. |
53 %] | 53 %] |
54 [getter, setter] double x; | 54 [getter, setter] double x; |
55 | 55 |
56 %[ | 56 %[ |
57 The y coordinate of the top-left corner of this layer. | 57 The y coordinate of the top-left corner of this layer. |
58 %] | 58 %] |
59 [getter, setter] double y; | 59 [getter, setter] double y; |
60 | 60 |
61 %[ | 61 %[ |
| 62 The z coordinate of the layer (used only to determine stacking order). |
| 63 %] |
| 64 [getter, setter] double z; |
| 65 |
| 66 %[ |
62 The width of this layer. | 67 The width of this layer. |
63 %] | 68 %] |
64 [getter, setter] double width; | 69 [getter, setter] double width; |
65 | 70 |
66 %[ | 71 %[ |
67 The height of this layer. | 72 The height of this layer. |
68 %] | 73 %] |
69 [getter, setter] double height; | 74 [getter, setter] double height; |
70 | 75 |
71 %[ | 76 %[ |
72 A scaling factor to apply to the pattern's x-axis. | 77 A scaling factor to apply to the pattern's x-axis. |
73 %] | 78 %] |
74 [getter, setter] double scale_x; | 79 [getter, setter] double scale_x; |
75 | 80 |
76 %[ | 81 %[ |
77 A scaling factor to apply to the pattern's y-axis. | 82 A scaling factor to apply to the pattern's y-axis. |
78 %] | 83 %] |
79 [getter, setter] double scale_y; | 84 [getter, setter] double scale_y; |
80 }; // Layer | 85 }; // Layer |
81 | 86 |
82 } // namespace o2d | 87 } // namespace o2d |
83 | 88 |
84 } // namespace o3d | 89 } // namespace o3d |
OLD | NEW |