slint/tests/cases/expr/acos.slint
Aurindam Jana 3523e86359
Simplify commercial license (#3063)
Base the commercial license on the Royalty-free license adding clauses pertaining to the fees.
2024-05-31 14:06:17 +02:00

31 lines
869 B
Text

// Copyright © SixtyFPS GmbH <info@slint.dev>
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-2.0 OR LicenseRef-Slint-Software-3.0
TestCase := Rectangle {
property<angle> t1: acos(0);
property<angle> t2: acos(0.5);
property<angle> t3: acos(1);
}
/*
```cpp
auto handle = TestCase::create();
const TestCase &instance = *handle;
assert(std::abs(instance.get_t1() - 90.0) < 0.0001);
assert(std::abs(instance.get_t2() - 60.0) < 0.0001);
assert(std::abs(instance.get_t3()) < 0.0001);
```
```rust
let instance = TestCase::new().unwrap();
assert!((instance.get_t1() - 90.0).abs() < 0.0001);
assert!((instance.get_t2() - 60.0).abs() < 0.0001);
assert!(instance.get_t3().abs() < 0.0001);
```
```js
var instance = new slint.TestCase({});
assert.equal(instance.t1, 90);
assert.equal(instance.t2, 60);
assert.equal(instance.t3, 0);
```
*/