| 1 | // Copyright © SixtyFPS GmbH <info@slint.dev> |
|---|---|
| 2 | // SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-2.0 OR LicenseRef-Slint-Software-3.0 |
| 3 | |
| 4 | export component TestCase inherits Path { |
| 5 | property<float> my_x: 100; |
| 6 | stroke: red; |
| 7 | stroke-width: 10px; |
| 8 | MoveTo {} |
| 9 | LineTo { |
| 10 | property<float> my_y: 200; |
| 11 | x: root.my_x; |
| 12 | y: my_y; |
| 13 | } |
| 14 | } |
| 15 |
