X-Git-Url: https://git.ucc.asn.au/?p=atyndall%2Fcits2231.git;a=blobdiff_plain;f=helper.c;h=2dad7e6c8b67dff4b1083eeebf13fb079529261f;hp=445e0cd87525b4d1f2d057f8a79c1cc636874dd7;hb=9c9617149e48a5290730a3462155413e27bce855;hpb=7664cdd0015a7d16ea6fdb0b06fca1a23586f0c1 diff --git a/helper.c b/helper.c index 445e0cd..2dad7e6 100644 --- a/helper.c +++ b/helper.c @@ -214,10 +214,10 @@ void drawFloor() { for ( int x = -floorSize; x < floorSize; x++ ) { for ( int y = -floorSize; y < floorSize; y++ ) { glColor3f( 1.0, 1.0, 1.0 ); - glVertex2f( x*squareSize, y*squareSize ); - glVertex2f( (x+1)*squareSize, y*squareSize ); - glVertex2f( (x+1)*squareSize, (y+1)*squareSize ); - glVertex2f( x*squareSize, (y+1)*squareSize ); + glVertex3f( x*squareSize, 0.0, y*squareSize ); + glVertex3f( (x+1)*squareSize, 0.0, y*squareSize ); + glVertex3f( (x+1)*squareSize, 0.0, (y+1)*squareSize ); + glVertex3f( x*squareSize, 0.0, (y+1)*squareSize ); } }