/computerGraphics_OpenGL

Implementing differnent algorithms and basics of graphics

Primary LanguageC++

Computer Graphics OpenGL

Basic Starter File

SHAPES

Point

  • GL_POINTS - creates points

Line

  • GL_LINES - creates broken lines
  • GL_LINE_STRIP - end point of one segment starting point of next segment
  • GL_LINE_LOOP - closed shapes by line

Triangle

  • GL_TRIANGLES - creates Triangle
  • GL_TRIANGLE_STRIP - Creates Triangle Strip
  • GL_TRIANGLE_FAN - Creates Triangle Fan

Quardilateral

  • GL_QUADS - Creates Quardilateral
  • GL_QUAD_STRIP - Creates Quardilateral Strip

Polygons

  • GL_POLYGON - Creates Polygon