NewTOAPIA.Drawing.cell_aa.not_equal C# (CSharp) Method

not_equal() public method

public not_equal ( int ex, int ey, cell_aa cell ) : bool
ex int
ey int
cell cell_aa
return bool
        public bool not_equal(int ex, int ey, cell_aa cell)
        {
            unchecked
            {
                return ((ex - x) | (ey - y) | (left - cell.left) | (right - cell.right)) != 0;
            }
        }
    };