MiniEngine/doc/markdown/rect.md

21 lines
407 B
Markdown
Raw Normal View History

2017-05-01 20:41:13 +08:00
# Rect 矩形类
## 成员
| 类型 | 名称 | 描述 |
| --- | --- | --- |
| int | x | 矩形左上角的x坐标 |
| int | y | 矩形左上角的y坐标 |
| int | w | 矩形宽度 |
| int | h | 矩形高度 |
## 方法
Rect()
>
默认构造.长宽为0且坐标为(0,0)
Rect(int X,int Y,int W,int H)
>
指定参数的构造
SDL_Rect Rect::toSDLRect()
>
将当前矩形转换为SDL_Rect表示