Difference between revisions of "Vector.zero"

From GiderosMobile
Line 6: Line 6:
 
Constant vector with all components set to 0. Includes the fourth component in 4-wide mode.
 
Constant vector with all components set to 0. Includes the fourth component in 4-wide mode.
 
<syntaxhighlight lang="lua">
 
<syntaxhighlight lang="lua">
(table) = vector.zero
+
(vector) = vector.zero
 
</syntaxhighlight>
 
</syntaxhighlight>
  
 
=== Return values ===
 
=== Return values ===
'''Returns''' (table) the vector coordinates set to 0<br/>
+
'''Returns''' (vector) the vector with coordinates set to 0<br/>
  
 
=== Example ===
 
=== Example ===

Revision as of 10:05, 2 February 2026

Available since: Gideros 2026.1
Class: vector library

Description

Constant vector with all components set to 0. Includes the fourth component in 4-wide mode.

(vector) = vector.zero

Return values

Returns (vector) the vector with coordinates set to 0

Example

local v0 = vector.zero
print(v0) -- 0, 0, 0