Files
XCEngine/docs/api/math/rectint/getbottom.md
2026-03-20 02:35:15 +08:00

676 B
Raw Blame History

RectInt::GetBottom

int32_t GetBottom() const;

获取矩形下边界 y 坐标。

返回: 矩形下边界 y 坐标(等于 y + height

线程安全:

复杂度: O(1)

示例:

#include "XCEngine/Math/Rect.h"
#include <iostream>

using namespace XCEngine::Math;

int main() {
    RectInt rect(10, 20, 100, 50);
    int32_t bottom = rect.GetBottom();
    std::cout << "Bottom: " << bottom << "\n";
    return 0;
}

相关文档