mirror of
https://github.com/slint-ui/slint.git
synced 2025-12-23 09:19:32 +00:00
12 lines
304 B
Text
12 lines
304 B
Text
// Copyright © SixtyFPS GmbH <info@slint.dev>
|
|
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.1 OR LicenseRef-Slint-commercial
|
|
|
|
TestCase := Path {
|
|
property<float> my_x: 100;
|
|
property<float> my_y: 200;
|
|
|
|
LineTo {
|
|
x: root.my_x;
|
|
y: root.my_y;
|
|
}
|
|
}
|