CatEye.Core.Vector.Vector C# (CSharp) Method

Vector() public method

public Vector ( Point begin, Point end ) : System
begin Point
end Point
return System
        public Vector(Point begin, Point end)
        {
            this.m_x = end.X - begin.X;
            this.m_y = end.Y - begin.Y;
        }

Same methods

Vector::Vector ( double x, double y ) : System