Vector
Vector used to describe point on world. Has three float's(x, y and z axis)
Vector.new():
Creates new Vector object (+inf, +inf, +inf)Vector.new(float x, float y, float z):
Creates new Vector object (x, y, z)float x
x value of objectfloat y
y value of objectfloat z
z value of objectfloat Length()
Returns Length ( sqrt(x*x + y*y + z*z) )Last updated