awtk/docs/manual/rectf_t.md
2021-08-03 07:53:37 +08:00

86 lines
1.8 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

## rectf\_t
### 概述
矩形。包括一个x坐标、y坐标、宽度和高度。
----------------------------------
### 函数
<p id="rectf_t_methods">
| 函数名称 | 说明 |
| -------- | ------------ |
| <a href="#rectf_t_rectf_init">rectf\_init</a> | 初始化rectf对象。 |
### 属性
<p id="rectf_t_properties">
| 属性名称 | 类型 | 说明 |
| -------- | ----- | ------------ |
| <a href="#rectf_t_h">h</a> | float | 高度。 |
| <a href="#rectf_t_w">w</a> | float | 宽度。 |
| <a href="#rectf_t_x">x</a> | float | x坐标。 |
| <a href="#rectf_t_y">y</a> | float | y坐标。 |
#### rectf\_init 函数
-----------------------
* 函数功能:
> <p id="rectf_t_rectf_init">初始化rectf对象。
* 函数原型:
```
rectf_t rectf_init (float x, float y, float w, float h);
```
* 参数说明:
| 参数 | 类型 | 说明 |
| -------- | ----- | --------- |
| 返回值 | rectf\_t | 返回rect对象。 |
| x | float | x坐标。 |
| y | float | y坐标。 |
| w | float | 宽度。 |
| h | float | 高度。 |
#### h 属性
-----------------------
> <p id="rectf_t_h">高度。
* 类型float
| 特性 | 是否支持 |
| -------- | ----- |
| 可直接读取 | 是 |
| 可直接修改 | 否 |
| 可脚本化 | 是 |
#### w 属性
-----------------------
> <p id="rectf_t_w">宽度。
* 类型float
| 特性 | 是否支持 |
| -------- | ----- |
| 可直接读取 | 是 |
| 可直接修改 | 否 |
| 可脚本化 | 是 |
#### x 属性
-----------------------
> <p id="rectf_t_x">x坐标。
* 类型float
| 特性 | 是否支持 |
| -------- | ----- |
| 可直接读取 | 是 |
| 可直接修改 | 否 |
| 可脚本化 | 是 |
#### y 属性
-----------------------
> <p id="rectf_t_y">y坐标。
* 类型float
| 特性 | 是否支持 |
| -------- | ----- |
| 可直接读取 | 是 |
| 可直接修改 | 否 |
| 可脚本化 | 是 |