Vector

From GiderosMobile
Revision as of 05:33, 13 May 2022 by MoKaLux (talk | contribs) (Created page with "__NOTOC__ '''Available since:''' Gideros 2022.1.3<br/> '''Class:''' math<br/> === Description === Support to Luau vectors. <source lang="lua"> (table) = vector(c1,...) </...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Available since: Gideros 2022.1.3
Class: math

Description

Support to Luau vectors.

(table) = vector(c1,...)

Parameters

c1: (number) first vector coordinate
...: (multiple) up to 3 more vector coordinates optional

Return values

Returns (table) the vector coordinates, or nan if not a number

Example

local v1 = vector(1, 3, 5)
local v2 = vector(2, 4, 6)
print(v1 + v2) -- 3, 7, 11, nan