c# 使用opengl画实心圆
public void Fill_Circle(Brush brushh, Point pnt,int r)
{
if (opengl)
{
double M_PI = 3.1415926;
double inc = M_PI / 12;
double max = 2 * M_PI;
GL.Begin(PrimitiveType.TriangleFan);
GL.Color4(((SolidBrush)brushh).Color);
int x = pnt.X;
int y = pnt.Y;
for (double d = 0; d < max; d += inc)
{
GL.Vertex2(Math.Cos(d) * r + x, Math.Sin(d) * r + y);
}
GL.End();
}
else
{
//graphicsObjectGDIP.FillPolygon(brushh, list);
}
}
哇哇哇
可以的
哇哇哇
666中文?
哇哇哇
alert("你好啊");
嗯嗯
alert("你好啊");
匿名
alert("你好啊");