Return the current angle of velocity

Often used to rotate the displayed image with the correct angle

Property definitions

scene2d $ Sprite :: velocity_angle
	# Return the current angle of velocity
	# Often used to rotate the displayed image with the correct angle
	fun velocity_angle: Float
	do
		return atan2(self.vx.to_f, -self.vy.to_f)
	end
lib/scene2d/scene2d.nit:84,2--89,4