18 lines
224 B
Markdown
18 lines
224 B
Markdown
|
|
# Vector3::Left
|
||
|
|
|
||
|
|
```cpp
|
||
|
|
static Vector3 Left()
|
||
|
|
```
|
||
|
|
|
||
|
|
返回左方向向量 (-1, 0, 0)。
|
||
|
|
|
||
|
|
**返回:** `Vector3` - 值为 (-1, 0, 0) 的向量
|
||
|
|
|
||
|
|
**复杂度:** O(1)
|
||
|
|
|
||
|
|
**示例:**
|
||
|
|
|
||
|
|
```cpp
|
||
|
|
Vector3 left = Vector3::Left();
|
||
|
|
```
|