在维恩图中填充三组或更多组的交集

时间:2015-04-14 13:54:09

标签: c# graphics graphic venn-diagram

我正在编写维恩图,我在交叉路口遇到了问题。

我绘制圆圈,但我无法填充3个或更多圆圈的交叉点。

我用这段代码填充两个圆圈的交集

   Graphics g = this.CreateGraphics();
   GraphicsPath path = new GraphicsPath();
   Region region1 = new Region();

   Brush blue = new SolidBrush(Color.Blue);  
   Brush white=new SolidBrush(Color.White);
   Rectangle circle1 = new Rectangle(455, 200, 150, 150);
   Rectangle circle2 = new Rectangle(455, 275, 150, 150);
   g.FillEllipse(blue, circle1);
   g.FillEllipse(blue, circle2);

   path.AddEllipse(circle1);
   path.AddEllipse(circle2);
   region1.Intersect(path);
   g.FillRegion(white, region1);

我的意思是这样的

Image

1 个答案:

答案 0 :(得分:1)

现在,您正尝试将无限区域与包含两个圆圈的单个GraphicsPath对象相交。由于该区域开始是无限的,因此Intersect方法将返回您特定的GraphicsPath对象占用的区域。

要解决此问题,请通过将表示第一个圆的GraphicsPath传递给构造函数来创建您的区域。然后使用包含第二个圆的不同GraphicsPath调用Intersect函数。