ボールとボールの内側にこれを作成しようとしましたが、作成したGraphiPathでボールを埋める方法がわかりません
private void soccerball_Paint(object sender, PaintEventArgs e)
{
Graphics soccerballg = e.Graphics;
GraphicsPath hexagon = new GraphicsPath();
Pen pen = new Pen(Color.Red, 2);
SolidBrush brush = new SolidBrush(Color.Black);
Point[] points = new Point[]{
new Point(100,100),
new Point(108,100),
new Point(114,106),
new Point(108,112),
new Point(100,112),
new Point(94,106)
};
hexagon.AddPolygon(points);
Rectangle rect = new Rectangle(100, 100, 250, 250);
hexagon.AddEllipse(rect);
soccerballg.DrawPath(pen, hexagon);
soccerballg.FillRectangle(interior, rect);
}