Difference between revisions of "Math.normalize"

From GiderosMobile
m (Text replacement - "<source" to "<syntaxhighlight")
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
Line 9: Line 9:
 
(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