BezierFitting.Scene.DrawPoint C# (CSharp) Method

DrawPoint() private method

private DrawPoint ( Graphics graphics, double x, double y, Brush brush ) : void
graphics System.Drawing.Graphics
x double
y double
brush System.Drawing.Brush
return void
        private void DrawPoint(Graphics graphics, double x, double y, Brush brush)
        {
            graphics.FillEllipse(brush, (float)(x - radius), (float)(y - radius), double_radius, double_radius);
        }
    }