Editor.Circle.Paint C# (CSharp) Method

Paint() public method

public Paint ( System args, State state ) : void
args System
state State
return void
        public override void Paint(System.Windows.Forms.PaintEventArgs args, State state)
        {
            args.Graphics.FillPie(Brushes.Red, this.Center.X - this.Radius, this.Center.Y - this.Radius, this.Radius, this.Radius, 0, 360);
        }