예제 #1
0
        public Vector2d Lerped(Vector2d target, long amount)
        {
            Vector2d vec = this;

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