我需要一个在opengl中绘制弧线的函数。我还需要一个示例代码来使用它。
我可以用线条画一个圆,我也想用线条画圆弧。这是我绘制圆圈的函数:
void DrawCircle(float cx, float cy, float r, int num_segments)
{
glBegin(GL_LINE_STRIP);
for(int ii = 0; ii < num_segments; ii++)
{
float theta = 2.0f * 3.1415926f * float(ii) / float(num_segments);//get the current angle
float x = r * cosf(theta);//calculate the x component
float y = r * sinf(theta);//calculate the y component
glVertex2f(x + cx, y + cy);//output vertex
}
glEnd();
}
我使用 LINE_STRIP for Concert 绘制弧线的代码,但没有奏效。有人可以帮助我吗?