ARCed.Core.ColorWheel.DrawColorPointer C# (CSharp) Method

DrawColorPointer() private method

private DrawColorPointer ( Point pt ) : void
pt Point
return void
        private void DrawColorPointer(Point pt)
        {
            const int size = 3;
            this._graphics.DrawRectangle(Pens.Black,
                pt.X - size, pt.Y - size, size * 2, size * 2);
        }