Using OpenGL to draw self-intersecting polygons using tessellation with GLU, I seem to get inconsistent filling behaviour when selecting the winding positive fill rule (GLU_TESS_WINDING_POSITIVE).

For example, 2 self-intersecting polygons drawn with the following coordinates illustrate this inconsistency - where the direction of fill of one polygon appears to be the opposite of the other (even though both are drawn using the winding positive fill rule):

int poly1[][2] = {{612, 181}, {441, 81}, {145, 284}, {253, 69}, {397, 374}};
int poly2[][2] = {{403, 55}, {72, 306}, {304, 306}, {71, 63}};

2 self-intersecting polygons using winding positive fill rule

Am I misunderstanding something here?

EDIT: Problem solved... I needed to add the following function call

gluTessNormal(tess, 0.0, 0.0, 1.0);
link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.