Difference between revisions of "Math.normalize"

From GiderosMobile
m (Text replacement - "<source" to "<syntaxhighlight")
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})

Revision as of 15:28, 13 July 2023

Available since: Gideros 2020.9
Class: math

Description

Normalizes a vector. <syntaxhighlight lang="lua"> (number),(number),(number) = math.normalize(x,y,z) (table) = math.normalize({x,y,z}) (table) = math.normalize({x=x,y=y,z=z}) </source>

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