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

Draw() public method

Draws the images
public Draw ( Graphics g, ColorHandler hsv ) : void
g System.Drawing.Graphics Graphics context to draw with
hsv ColorHandler HSV color to draw
return void
        public void Draw(Graphics g, ColorHandler.HSV hsv)
        {
            this._graphics = g;
            this._hsv = hsv;
            this.CalcCoordsAndUpdate(this._hsv);
            this.UpdateDisplay();
        }

Same methods

ColorWheel::Draw ( Graphics g, Point mousePoint ) : void