词条 | glPushMatrix |
释义 | glPushMatrix NAME glPushMatrix, glPopMatrix -- push and pop the current matrix stack C SPECIFICATION void glPushMatrix(void void) C SPECIFICATION void glPopMatrix(void void) DESCRIPTION There is a stack of matrices for each of the matrix modes. In GL_MODELVIEW mode, the stack depth is at least 32. In the other two modes, GL_PROJECTION and GL_TEXTURE, the depth is at least 2. The current matrix in any mode is the matrix on the top of the stack for that mode. glPushMatrix pushes the current matrix stack down by one, duplicating the current matrix. That is, after a glPushMatrix call, the matrix on the top of the stack is identical to the one below it. glPopMatrix pops the current matrix stack, replacing the current matrix with the one below it on the stack. Initially, each of the stacks contains one matrix, an identity matrix. It is an error to push a full matrix stack, or to pop a matrix stack that contains only a single matrix. In either case, the error flag is set and no other change is made to GL state. 将当前栈中所有的矩阵向下压一级,当前矩阵由函数glMatrixMode()指定。复制栈顶矩阵,并将其压入堆栈,这样堆栈中最上面两个矩阵的内容相同。如果压入的矩阵过多,将导致错误。 ERRORS GL_STACK_OVERFLOW is generated if glPushMatrix is called while the current matrix stack is full. GL_STACK_UNDERFLOW is generated if glPopAttrib is called while the current matrix stack contains only a single matrix. GL_INVALID_OPERATION is generated if glPushMatrix is called between a call to glBegin and the corresponding call to glEnd. |
随便看 |
百科全书收录4421916条中文百科知识,基本涵盖了大多数领域的百科知识,是一部内容开放、自由的电子版百科全书。