BezierFitting.Scene.DrawPoint C# (CSharp) Метод

DrawPoint() приватный Метод

private DrawPoint ( Graphics graphics, double x, double y, Brush brush ) : void
graphics System.Drawing.Graphics
x double
y double
brush System.Drawing.Brush
Результат 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);
        }
    }