Dot
7/14/25Less than 1 minute
Vector3.Dot(Vector3 lhs, Vector3 rhs)
Dot Product of two vectors.
Parameters:
| Name | Type | Description |
|---|---|---|
| lhs | Vector3 | |
| rhs | Vector3 |
Returns:
| type | Description |
|---|---|
| number | Dot Product of two vectors. |
Usage
---@type Vector3
local lhs;
---@type Vector3
local rhs;
local val0 = Vector3:Dot(lhs, rhs)
