Difference between revisions of "Math.normalize"

From GiderosMobile
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
(One intermediate revision by the same user not shown)
Line 5: Line 5:
 
=== Description ===
 
=== Description ===
 
Normalizes a vector.
 
Normalizes a vector.
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
(number),(number),(number) = math.normalize(x,y,z)
 
(number),(number),(number) = math.normalize(x,y,z)
 
(table) = math.normalize({x,y,z})
 
(table) = math.normalize({x,y,z})
 
(table) = math.normalize({x=x,y=y,z=z})
 
(table) = math.normalize({x=x,y=y,z=z})
</source>
+
</syntaxhighlight>
  
 
=== Parameters ===
 
=== Parameters ===

Latest revision as of 15:31, 13 July 2023

Available since: Gideros 2020.9
Class: math

Description

Normalizes a vector.

(number),(number),(number) = math.normalize(x,y,z)
(table) = math.normalize({x,y,z})
(table) = math.normalize({x=x,y=y,z=z})

Parameters

x: (number) X component of the vector
y: (number) Y component of the vector
z: (number) Z component of the vector optional

Return values

Returns (number) the normalized vector