Pinta.Core.BitVector2DSurfaceAdapter.this C# (CSharp) Method

this() public method

public this ( Point pt ) : bool
pt Point
return bool
        public bool this[Point pt]
        {
            get
            {
                return this[pt.X, pt.Y];
            }

            set
            {
                this[pt.X, pt.Y] = value;
            }
        }

Same methods

BitVector2DSurfaceAdapter::this ( int x, int y ) : bool