Can someone please explain to me why the following code doesn't draw anything, but If I use GL_LINE_LOOP it does make a closed loop?
glBegin(GL_POLYGON);
for(int i = 0; i <= Ncircle; i++) {
tempAngle = angle + i*(2*M_PI - 2*angle)/Ncircle;
glVertex3f(r*cos(tempAngle), r*sin(tempAngle), 0.0);
}
glVertex3f(l, 0, 0.0);
//glVertex3f(r*cos(angle), r*sin(angle), 0.0);
glEnd();
(This is basically a circle of radius r and Θ in [-angle,angle] with a triangle of height l on it such that the angle of leaving the circle is the triangle's angle:
