Vec2:length
EditReturns the length of the vector.
length = Vec2:length()
Arguments
None
Returns
Name | Type | Description |
length | number | The length of the vector. |
Notes
The length is equivalent to this:
math.sqrt(v.x * v.x + v.y * v.y)
See also
Vec2:normalize
Vec2:distance
Vec2