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

Scanline() public method

public Scanline ( int x, int y, int length ) : System
x int
y int
length int
return System
        public Scanline(int x, int y, int length)
        {
            this.x = x;
            this.y = y;
            this.length = length;
        }
    }