Math.normalize

From GiderosMobile
Revision as of 15:28, 13 July 2023 by Hgy29 (talk | contribs) (Text replacement - "<source" to "<syntaxhighlight")

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