public Vector2d Lerped(Vector2d target, long amount)
        {
            Vector2d vec = this;

            vec.Lerp(target.x, target.y, amount);
            return(vec);
        }