Name

glLoadIdentity - replace the current matrix with the identity matrix

C Specification

void glLoadIdentity(void)

Description

glLoadIdentity replaces the current matrix with the identity matrix. It is semantically equivalent to calling glLoadMatrix with the identity matrix

(
1 0 0 0
0 1 0 0
0 0 1 0
0 0 0 1
)

but in some cases it is more efficient.

Copyright

Copyright © 2003-2004 Silicon Graphics, Inc.

This document is licensed under the SGI Free Software B License. For details, see http://oss.sgi.com/projects/FreeB/.

See Also

glLoadMatrix, glMatrixMode, glMultMatrix, glPushMatrix