SharpNeat.Domains.IntPoint.IntPoint C# (CSharp) Method

IntPoint() public method

Construct point with the specified coordinates.
public IntPoint ( int x, int y ) : System
x int
y int
return System
        public IntPoint(int x, int y)
        {
            _x = x;
            _y = y;
        }