Vector2

Vector2 used to describe point on screen. Has two float's(x and y axis)

Vector2.new(float x, float y):

		Creates new Vector2 object (x, y)

float x

		x value of object

float y

		y value of object

float Length()

		Returns Length ( sqrt(x*x + y*y) )

Last updated