Pinta.ImageManipulation.Scanline.operator C# (CSharp) Method

operator() public static method

public static operator ( ) : bool
return bool
        public static bool operator== (Scanline lhs, Scanline rhs)
        {
            return lhs.x == rhs.x && lhs.y == rhs.y && lhs.length == rhs.length;
        }