Cross
7/14/25Less than 1 minute
Vector3.Cross(Vector3 lhs, Vector3 rhs)
Cross Product of two vectors.
Parameters:
| Name | Type | Description |
|---|---|---|
| lhs | Vector3 | Left hand side Vector3 |
| rhs | Vector3 | Right Hand Side Vector3 |
Returns:
| type | Description |
|---|---|
| Vector3 | Cross Product of two vectors. |
Usage
---@type Vector3
local lhs;
---@type Vector3
local rhs;
local val0 = Vector3:Cross(lhs, rhs)
