fix: 调整了vector3的一处错误

Cross方法返回值为Vector3类型的叉积
This commit is contained in:
linyuzhe210
2025-01-03 19:37:14 +08:00
committed by GitHub
parent 0e149054e3
commit 54eed1537a

View File

@@ -281,7 +281,7 @@ c = Vector3.Dot(a, b) # 1 * 0 + 2 * 3 + 3 * 1 = 9
| 数据类型 | 说明 |
| :------- | :------------- |
| float | 两个向量的积 |
| Vector3 | 两个向量的积 |
- 示例