Difference between revisions of "Vector"

From GiderosMobile
(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,...) </...")
 
m (Text replacement - "<source" to "<syntaxhighlight")
 
Line 5: Line 5:
 
=== Description ===
 
=== Description ===
 
Support to Luau vectors.
 
Support to Luau vectors.
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
(table) = vector(c1,...)
 
(table) = vector(c1,...)
 
</source>
 
</source>
Line 17: Line 17:
  
 
=== Example ===
 
=== Example ===
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
local v1 = vector(1, 3, 5)
 
local v1 = vector(1, 3, 5)
 
local v2 = vector(2, 4, 6)
 
local v2 = vector(2, 4, 6)

Latest revision as of 15:32, 13 July 2023

Available since: Gideros 2022.1.3
Class: math

Description

Support to Luau vectors. <syntaxhighlight lang="lua"> (table) = vector(c1,...) </source>

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

<syntaxhighlight lang="lua"> local v1 = vector(1, 3, 5) local v2 = vector(2, 4, 6) print(v1 + v2) -- 3, 7, 11, nan </source>