Dota 2 Workshop Tools/Scripting/API/Vector.Length: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
(fixing lowercase issue)
Line 6: Line 6:




''' float length() '''
''' float Length() '''


''Length of the Vector''
''Length of the Vector''
Line 15: Line 15:
<source lang="lua">
<source lang="lua">
a = Vec(1, 0, 0)
a = Vec(1, 0, 0)
len = a:length()
len = a:Length()
</source>
</source>



Revision as of 16:52, 13 August 2014

Note.pngNote: This page is automatically generated. Any changes may be overwritten

Function Description

float Length()

Length of the Vector


Example
a = Vec(1, 0, 0)
len = a:Length()

Returns

float - Length of the Vector