glLoadMatrix

replace the current matrix with the specified matrix

Signature

glLoadMatrix( )->
glLoadMatrixd( const GLdouble * ( m ) )-> void
glLoadMatrixd( m )
glLoadMatrixf( const GLfloat * ( m ) )-> void
glLoadMatrixf( m )

Parameters

VariablesDescription
m
Specifies a pointer to 16 consecutive values, which are used as the elements of a 4 4 column-major matrix.

Description

glLoadMatrix replaces the current matrix with the one whose elements are specified by m . The current matrix is the projection matrix, modelview matrix, or texture matrix, depending on the current matrix mode (see glMatrixMode ).
The current matrix, M, defines a transformation of coordinates. For instance, assume M refers to the modelview matrix. If v = v 0 v 1 v 2 v 3 is the set of object coordinates of a vertex, and m points to an array of 16 single- or double-precision floating-point values m = m 0 m 1 ... m 15 , then the modelview transformation M v does the following:
M v = m 0 m 4 m 8 m 12 m 1 m 5 m 9 m 13 m 2 m 6 m 10 m 14 m 3 m 7 m 11 m 15 v 0 v 1 v 2 v 3
Projection and texture transformations are similarly defined.

Notes

While the elements of the matrix may be specified with single or double precision, the GL implementation may store or operate on these values in less than single precision.

Errors

GL_INVALID_OPERATION is generated if glLoadMatrix is executed between the execution of glBegin and the corresponding execution of glEnd .

Associated Gets

glGet with argument GL_MATRIX_MODE
glGet with argument GL_COLOR_MATRIX
glGet with argument GL_MODELVIEW_MATRIX
glGet with argument GL_PROJECTION_MATRIX
glGet with argument GL_TEXTURE_MATRIX

See Also

Sample Code References

The following code samples have been found which appear to reference the functions described here. Take care that the code may be old, broken or not even use PyOpenGL.

glLoadMatrixd
OpenGLContext OpenGLContext/doinchildmatrix.py Lines: 28
OpenGLContext OpenGLContext/atlas.py Lines: 254
OpenGLContext OpenGLContext/shadow/shadowcontext.py Lines: 22
OpenGLContext OpenGLContext/passes/renderpass.py Lines: 297
OpenGLContext OpenGLContext/passes/rendervisitor.py Lines: 414
OpenGLContext tests/glhistogram.py Lines: 83
OpenGLContext tests/gldrawpixelssynth.py Lines: 68
OpenGLContext tests/glutbitmapcharacter.py Lines: 35
OpenGLContext tests/gldrawpixels.py Lines: 88
glLoadMatrixf
OpenGLContext OpenGLContext/passes/flatcompat.py Lines: 61, 71, 131, 141, 154, 182, 266
OpenGLContext OpenGLContext/passes/flatcore.py Lines: 169, 251
OpenGLContext OpenGLContext/passes/_flat.py Lines: 445, 529
OpenGLContext tests/shadow_1.py Lines: 290, 394, 396
{LGPL} VisionEgg VisionEgg/Core.py Lines: 790, 795, 800, 806, 811, 824, 837, 876
{LGPL} VisionEgg VisionEgg/GL.py Lines: 54, 55
{LGPL or GPL or MPL} Kamaelia Code/Python/Kamaelia/Kamaelia/Visualisation/PhysicsGraph3D/Particles3D.py Lines: 546, 592, 643
{LGPL or GPL or MPL} Kamaelia Code/Python/Kamaelia/Kamaelia/UI/OpenGL/OpenGLDisplay.py Lines: 805, 887
{LGPL or GPL or MPL} Kamaelia Sketches/CL/Topology3D/Utils/Particles3D.py Lines: 286, 327, 375
{LGPL or GPL or MPL} Kamaelia Sketches/CL/Topology3D/THF/Kamaelia/UI/OpenGL/OpenGLDisplay.py Lines: 783, 865
{LGPL or GPL or MPL} Kamaelia Sketches/CL/Topology3D/THF/Sketches/Scrollbar3D.py Lines: 165
{LGPL or GPL or MPL} Kamaelia Sketches/CL/Topology3D/THF/Sketches/Button3D.py Lines: 181
{LGPL or GPL or MPL} Kamaelia Sketches/CL/Topology3D/THF/Sketches/SimpleCube.py Lines: 139
{LGPL or GPL or MPL} Kamaelia Sketches/CL/Topology3D/THF/Sketches/PygameWrapperPlane.py Lines: 149
{LGPL or GPL or MPL} Kamaelia Sketches/CL/Topology3D/THF/Sketches/Progress3D.py Lines: 140
{LGPL or GPL or MPL} Kamaelia Sketches/CL/Topology3D/THF/Sketches/TexPlane.py Lines: 141
{LGPL or GPL or MPL} Kamaelia Sketches/CL/Topology3D/THF/Sketches/Object3D.py Lines: 123
{LGPL or GPL or MPL} Kamaelia Sketches/CL/Topology3D/THF/Sketches/playground/Display3D.py Lines: 415, 467
{LGPL or GPL or MPL} Kamaelia Sketches/THF/3D/Scrollbar3D.py Lines: 165
{LGPL or GPL or MPL} Kamaelia Sketches/THF/3D/Button3D.py Lines: 181
{LGPL or GPL or MPL} Kamaelia Sketches/THF/3D/SimpleCube.py Lines: 139
{LGPL or GPL or MPL} Kamaelia Sketches/THF/3D/PygameWrapperPlane.py Lines: 149
{LGPL or GPL or MPL} Kamaelia Sketches/THF/3D/Progress3D.py Lines: 140
{LGPL or GPL or MPL} Kamaelia Sketches/THF/3D/TexPlane.py Lines: 141
{LGPL or GPL or MPL} Kamaelia Sketches/THF/3D/Object3D.py Lines: 123
{LGPL or GPL or MPL} Kamaelia Sketches/THF/3D/playground/Display3D.py Lines: 415, 467

MathML Rendering

Powered by MathJax