ARCed.Core.ColorWheel.Draw C# (CSharp) Méthode

Draw() public méthode

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
Résultat 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