Skip to main content

Vector4.Dot(Vector4 a, Vector4 b)

Dot Product of two vectors.

Parameters:

NameTypeDescription
aVector4a
bVector4b

Returns:

typeDescription
numberDot Product of two vectors.

Usage

---@type Vector4
local a;

---@type Vector4
local b;


local val0 = Vector4:Dot(a, b)