got one fo the cube's normals wrong

git-svn-id: https://svn.code.sf.net/p/freeglut/code/trunk@1148 7f0cb862-5218-0410-a997-914c9d46530a
This commit is contained in:
dcnieho 2012-03-16 04:23:48 +00:00
parent eb95f57fa6
commit fe5c7db449

View File

@ -126,9 +126,9 @@ static GLdouble cube_v[CUBE_NUM_VERT][3] =
/* Normal Vectors */
static GLdouble cube_n[CUBE_NUM_FACES][3] =
{
{ 0.0, 0.0, 1.0},
{ 1.0, 0.0, 0.0},
{ 0.0, 1.0, 0.0},
{ 0.0, 0.0, 1.0},
{-1.0, 0.0, 0.0},
{ 0.0,-1.0, 0.0},
{ 0.0, 0.0,-1.0}