Files
XCEngine/docs/api/math/rectint/gettop.md

36 lines
668 B
Markdown
Raw Normal View History

2026-03-20 02:35:15 +08:00
# RectInt::GetTop
```cpp
int32_t GetTop() const;
```
获取矩形上边界 y 坐标。
**返回:** 矩形上边界 y 坐标(等于 y 成员变量)
**线程安全:** ✅
**复杂度:** O(1)
**示例:**
```cpp
#include "XCEngine/Math/Rect.h"
#include <iostream>
using namespace XCEngine::Math;
int main() {
RectInt rect(10, 20, 100, 50);
int32_t top = rect.GetTop();
std::cout << "Top: " << top << "\n";
return 0;
}
```
## 相关文档
- [`RectInt::GetLeft`](getleft.md) - 获取左边界
- [`RectInt::GetRight`](getright.md) - 获取右边界
- [`RectInt::GetBottom`](getbottom.md) - 获取下边界
- [RectInt 总览](rectint.md)