Help for this page

Select Code to Download


  1. or download this
    sub drawPolygon {
        glBegin(GL_POLYGON);
    ...
        glVertex3f( @$_ ) for @_;
        glEnd();
    }
    
  2. or download this
    sub drawPolygon {
        glBegin(GL_POLYGON);
    ...
        glVertex3f( @$_ ) for @_;
        glEnd();
    }