Antialiasing Geometry
Drawing Fast Lines
- Draw the polygon model in line modeglPolygonMode(GL_FRONT_AND_BACK, GL_LINE)
- Draw the polygons as line loopsglBegin(GL_LINE_LOOP)
- Extract edges from polygon model, draw as linesglBegin(GL_LINES)
- Connect edges into long line stripsglBegin(GL_LINE_STRIP)