n | Number of items to pop from the matrix stack |
TRUE | Successful | |
FALSE | Failure (stack underflow) |
The following pops two items from the matrix stack which was pushed in stack by njPushMatix() function. NJS_MATRIX stack[10]; NJS_VIEW view; njInitMatrix(stack, 10); njInitView(&view); njSetView(&view); njClearMatrix(); njPushMatrix(NULL); njPushMatrix(NULL); njPopMatrix(2);