Files
XCEngine/docs/api/math/matrix4/zero.md

30 lines
422 B
Markdown
Raw Normal View History

2026-03-20 02:35:15 +08:00
# Matrix4x4::Zero
```cpp
2026-03-20 02:35:15 +08:00
static Matrix4x4 Zero()
```
2026-03-20 02:35:15 +08:00
返回零矩阵。所有元素初始化为 0 的矩阵。
2026-03-20 02:35:15 +08:00
**参数:** (无)
**返回:** 零矩阵
**线程安全:** ✅
**复杂度:** O(1)
**示例:**
```cpp
2026-03-20 02:35:15 +08:00
#include "XCEngine/Math/Matrix4.h"
using namespace XCEngine::Math;
Matrix4 zero = Matrix4::Zero();
2026-03-20 02:35:15 +08:00
// 所有元素均为 0
```
2026-03-20 02:35:15 +08:00
## 相关文档
- [Matrix4](matrix4.md) - 返回类总览