Vec4:length
EditReturns the length of the vector.
length = Vec4: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 + v.z * v.z + v.w * v.w)