السلام عليكــم ورحمـة الله وبركاتــه مشكور علي الطريقة الجميلة دي triangle strips طريقة حلوة جدًا و مختصرة بس هوا فيه دوال بترسم علي الجاهز أشكال ثلاثية الأبعاد اسمها "QUADRATICS" quadratic=gluNewQuadric(); // Create A Pointer To The Quadric Object ( NEW ) gluQuadricNormals(quadratic, GLU_SMOOTH); // Create Smooth Normals ( NEW ) gluQuadricTexture(quadratic, GL_TRUE); // Create Texture Coords ( NEW ) و الدوال نفسها كالتالي glDrawCube(); gluCylinder(quadratic,1.0f,1.0f,3.0f,32,32); // Draw Our Cylinder gluDisk(quadratic,0.5f,1.5f,32,32); // Draw A Disc (CD Shape) gluSphere(quadratic,1.3f,32,32); // Draw A Sphere gluPartialDisk(quadratic,0.5f,1.5f,32,32,15,5); // A Disk Like The One Before و طبعًا حط الدوال في الكومبايلر عشان تعرف وظيفة كل رقم جزاك الله خيرًا