int intDegree=40000;
GraphicsPath graphicsPath1=new GraphicsPath();
GraphicsPath graphicsPath2=new GraphicsPath();
graphicsPath1.AddEllipse(1000-intDegree,500-intDegree,intDegree*2,intDegree*2);
graphicsPath2.AddEllipse(12345678-intDegree,10045678-intDegree,intDegree*2,intDegree*2);
//这个计算结果为True
graphicsPath1.IsVisible(new Point(1000,500));
//这个计算结果为False
graphicsPath2.IsVisible(new Point(12345678,10045678));