Vector();No description
Returns
VectorThe composed vectorlocal a = createVector(300, 450, 400);
local copy = a.xyz;
local a_2d = a.xy; -- { 300, 450 }
local b = a.xyx; -- { 300, 450, 300 }
local c = a.zxy; -- { 400, 300, 450 }Vector();No description
VectorThe composed vectorlocal a = createVector(300, 450, 400);
local copy = a.xyz;
local a_2d = a.xy; -- { 300, 450 }
local b = a.xyx; -- { 300, 450, 300 }
local c = a.zxy; -- { 400, 300, 450 }