Previous: glValidateProgramPipeline Table of Contents (GL) Next: glVertexAttrib

glVertex

specify a vertex

Signature

glVertex( )->
glVertex( * args )
Choose glVertexX based on number of args
glVertex2d( GLdouble ( x ) , GLdouble ( y ) )-> void
glVertex2d( x , y )
glVertex2dv( const GLdouble * ( v ) )-> void
glVertex2dv( v )
glVertex2f( GLfloat ( x ) , GLfloat ( y ) )-> void
glVertex2f( x , y )
glVertex2fv( const GLfloat * ( v ) )-> void
glVertex2fv( v )
glVertex2i( GLint ( x ) , GLint ( y ) )-> void
glVertex2i( x , y )
glVertex2iv( const GLint * ( v ) )-> void
glVertex2iv( v )
glVertex2s( GLshort ( x ) , GLshort ( y ) )-> void
glVertex2s( x , y )
glVertex2sv( const GLshort * ( v ) )-> void
glVertex2sv( v )
glVertex3d( GLdouble ( x ) , GLdouble ( y ) , GLdouble ( z ) )-> void
glVertex3d( x , y , z )
glVertex3dv( const GLdouble * ( v ) )-> void
glVertex3dv( v )
glVertex3f( GLfloat ( x ) , GLfloat ( y ) , GLfloat ( z ) )-> void
glVertex3f( x , y , z )
glVertex3fv( const GLfloat * ( v ) )-> void
glVertex3fv( v )
glVertex3i( GLint ( x ) , GLint ( y ) , GLint ( z ) )-> void
glVertex3i( x , y , z )
glVertex3iv( const GLint * ( v ) )-> void
glVertex3iv( v )
glVertex3s( GLshort ( x ) , GLshort ( y ) , GLshort ( z ) )-> void
glVertex3s( x , y , z )
glVertex3sv( const GLshort * ( v ) )-> void
glVertex3sv( v )
glVertex4d( GLdouble ( x ) , GLdouble ( y ) , GLdouble ( z ) , GLdouble ( w ) )-> void
glVertex4d( x , y , z , w )
glVertex4dv( const GLdouble * ( v ) )-> void
glVertex4dv( v )
glVertex4f( GLfloat ( x ) , GLfloat ( y ) , GLfloat ( z ) , GLfloat ( w ) )-> void
glVertex4f( x , y , z , w )
glVertex4fv( const GLfloat * ( v ) )-> void
glVertex4fv( v )
glVertex4i( GLint ( x ) , GLint ( y ) , GLint ( z ) , GLint ( w ) )-> void
glVertex4i( x , y , z , w )
glVertex4iv( const GLint * ( v ) )-> void
glVertex4iv( v )
glVertex4s( GLshort ( x ) , GLshort ( y ) , GLshort ( z ) , GLshort ( w ) )-> void
glVertex4s( x , y , z , w )
glVertex4sv( const GLshort * ( v ) )-> void
glVertex4sv( v )

Parameters

VariablesDescription
x, y, z, w
Specify x , y , z , and w coordinates of a vertex. Not all parameters are present in all forms of the command.

Parameters

v
Specifies a pointer to an array of two, three, or four elements. The elements of a two-element array are x and y ; of a three-element array, x , y , and z ; and of a four-element array, x , y , z , and w .

Description

glVertex commands are used within glBegin / glEnd pairs to specify point, line, and polygon vertices. The current color, normal, texture coordinates, and fog coordinate are associated with the vertex when glVertex is called.
When only x and y are specified, z defaults to 0 and w defaults to 1. When x , y , and z are specified, w defaults to 1.

Notes

Invoking glVertex outside of a glBegin / glEnd pair results in undefined behavior.

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.

glVertex
OpenGLContext tests/_bitmap_font.py Lines: 57, 59, 71, 73, 86, 88
OpenGLContext tests/redbook_surface_cb.py Lines: 148
OpenGLContext OpenGLContext/scenegraph/text/font.py Lines: 228, 229, 230, 231, 250, 251, 252, 253, 271, 272, 273, 274
OpenGLContext OpenGLContext/scenegraph/text/toolsfont.py Lines: 46, 72
{LGPL} PyUI tests/testcube.py Lines: 82, 90
{LGPL} VisionEgg VisionEgg/Textures.py Lines: 1247, 1251, 1255, 1259, 1551, 1554, 1557, 1560
{LGPL} VisionEgg VisionEgg/MoreStimuli.py Lines: 236, 237, 238, 239, 246, 247, 248, 249
{LGPL} VisionEgg VisionEgg/Gratings.py Lines: 683, 686, 689, 692
{LGPL or GPL or MPL} Kamaelia Code/Python/Kamaelia/Examples/SoC2006/THF/MiniExamples/OpenGLComponent.py Lines: 34, 46, 47, 48, 49
{LGPL or GPL or MPL} Kamaelia Code/Python/Kamaelia/Examples/SoC2006/THF/Checkers/CheckersBoard.py Lines: 50, 51, 52, 53
{LGPL or GPL or MPL} Kamaelia Code/Python/Kamaelia/Kamaelia/UI/OpenGL/OpenGLComponent.py Lines: 462, 474, 475, 476, 477
{LGPL or GPL or MPL} Kamaelia Sketches/CL/Topology3D/THF/Examples/Checkers/CheckersBoard.py Lines: 50, 51, 52, 53
{LGPL or GPL or MPL} Kamaelia Sketches/CL/Topology3D/THF/Kamaelia/UI/OpenGL/OpenGLComponent.py Lines: 459, 471, 472, 473, 474
{LGPL or GPL or MPL} Kamaelia Sketches/THF/Packages/Examples/Checkers/CheckersBoard.py Lines: 50, 51, 52, 53
{LGPL or GPL or MPL} Kamaelia Sketches/THF/Packages/Kamaelia/Community/THF/Kamaelia/UI/OpenGL/OpenGLComponent.py Lines: 459, 471, 472, 473, 474
{LGPL or GPL or MPL} Kamaelia Sketches/MPS/Examples/Checkers/CheckersBoard.py Lines: 50, 51, 52, 53
Visvis examples/customWobject.py Lines: 23, 23, 23, 24, 24, 24, 25, 25, 25, 26, 26, 26
glVertex2d
OpenGLContext OpenGLContext/scenegraph/text/toolsfont.py Lines: 110, 112
glVertex2dv
OpenGLContext tests/glu_tess.py Lines: 63
glVertex2f
OpenGL-Demo PyOpenGL-Demo/redbook/smooth.py Lines: 72, 74, 76
OpenGL-Demo PyOpenGL-Demo/redbook/lines.py Lines: 65, 66, 105
OpenGL-Demo PyOpenGL-Demo/tom/Line.py Lines: 17, 19, 21, 23
OpenGL-Demo PyOpenGL-Demo/tom/demo.py Lines: 56, 58, 60, 62
OpenGL-Demo PyOpenGL-Demo/NeHe/lesson43/glFreeType.py Lines: 160, 161, 162, 163
OpenGL-Demo PyOpenGL-Demo/NeHe/lesson44/glFont.py Lines: 57, 59, 61, 63
OpenGL-Demo PyOpenGL-Demo/NeHe/lesson44/glCamera.py Lines: 704, 706, 708, 710
{LGPL} PyUI2 system/openglgraphics.py Lines: 123
{LGPL} VisionEgg VisionEgg/Textures.py Lines: 1440, 1443, 1446, 1449, 1773, 1776, 1779, 1782, 1798, 1801, 1804, 1807, 1812, 1815, 1818, 1821
{LGPL} VisionEgg VisionEgg/Core.py Lines: 1494, 1495, 1496, 1497
{LGPL} PyMT examples/apps/particles/particles.py Lines: 196
{LGPL} PyMT examples/desktop/desktop-multi.py Lines: 5, 231
{LGPL} PyMT pymt/ui/widgets/objectdisplay.py Lines: 7, 50, 51
{LGPL} PyMT pymt/ui/widgets/radial.py Lines: 9, 147, 148, 149
{LGPL} PyMT pymt/graphx/paint.py Lines: 17, 132
{LGPL} PyMT pymt/graphx/bezier.py Lines: 38, 116
{LGPL} PyMT pymt/graphx/draw.py Lines: 165, 166, 171, 174, 177, 178, 183, 186, 189, 190, 195, 198, 201, 202, 207, 210, 270, 315, 316, 317...
{GPL} GLChess src/lib/scene/opengl/opengl.py Lines: 571, 572, 573, 574, 614, 615, 616, 617, 619, 620, 621, 622
{GPL} Scocca scocca/graphics/opengl/draw.py Lines: 29, 30, 62, 70
Visvis core/axes.py Lines: 1006, 1008, 1010, 1012
Visvis core/baseWibjects.py Lines: 74, 75, 76, 77, 96, 97, 98, 99
Visvis core/base.py Lines: 618, 619, 620, 621
Visvis functions/boxplot.py Lines: 266, 267, 268, 269, 274, 275, 277, 278, 279, 280, 282, 283, 284, 285, 307, 333, 334, 335, 336
Visvis wibjects/sliders.py Lines: 333, 334, 335, 336
Visvis wibjects/colorWibjects.py Lines: 680, 681, 682, 683, 701, 702, 703, 704
glVertex2fv
OpenGLContext tests/test_glvertex2fcrash.py Lines: 17
{LGPL} VisionEgg VisionEgg/MoreStimuli.py Lines: 471, 472, 511, 512
glVertex2i
OpenGL-Demo PyOpenGL-Demo/NeHe/lesson42.py Lines: 311, 312, 313, 314
{LGPL} PyUI pyui/renderers/openglPygame.py Lines: 295, 297, 299, 301
{LGPL} PyUI pyui/renderers/openglBase.py Lines: 140, 141, 142, 143, 155, 157, 159, 161, 168, 169, 186, 188, 190, 192, 231, 233, 235, 237
{LGPL} PyUI2 system/openglgraphics.py Lines: 85, 102, 103, 104, 105, 132, 140, 158, 160, 162, 164, 350, 352, 354, 356
{LGPL} PyUI2 renderers/openglPygame.py Lines: 298, 300, 302, 304
{LGPL} PyUI2 renderers/openglBase.py Lines: 140, 141, 142, 143, 155, 157, 159, 161, 168, 169, 186, 188, 190, 192, 231, 233, 235, 237
glVertex3d
OpenGL-Demo PyOpenGL-Demo/tom/lorentz.py Lines: 33, 42
Visvis wobjects/textures.py Lines: 569, 570, 571, 572
Visvis wobjects/sliceTextures.py Lines: 249, 254, 255, 256, 257
glVertex3dv
OpenGLContext tests/glvertex.py Lines: 17
OpenGLContext OpenGLContext/scenegraph/indexedfaceset.py Lines: 586, 596, 598, 620
OpenGLContext OpenGLContext/scenegraph/boundingvolume.py Lines: 263, 269, 270
OpenGLContext OpenGLContext/browser/vpcurve.py Lines: 91
glVertex3f
OpenGLContext tests/nehe4.py Lines: 54, 56, 58, 71, 72, 73, 74
OpenGLContext tests/nehe2.py Lines: 49, 50, 51, 59, 60, 61, 62
OpenGLContext tests/glu_tess2.py Lines: 59
OpenGLContext tests/nehe6_timer.py Lines: 107, 108, 109, 110, 112, 113, 114, 115, 117, 118, 119, 120, 122, 123, 124, 125, 127, 128, 129, 130...
OpenGLContext tests/nehe6_multi.py Lines: 128, 129, 130, 131, 133, 134, 135, 136, 138, 139, 140, 141, 143, 144, 145, 146, 148, 149, 150, 151...
OpenGLContext tests/nehe8.py Lines: 187, 188, 189, 190, 193, 194, 195, 196, 199, 200, 201, 202, 205, 206, 207, 208, 211, 212, 213, 214...
OpenGLContext tests/redbook_alpha.py Lines: 94, 95, 96, 102, 103, 104
OpenGLContext tests/nehe6.py Lines: 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 112, 113, 114, 115...
OpenGLContext tests/nehe6_convolve.py Lines: 161, 162, 163, 164, 166, 167, 168, 169, 171, 172, 173, 174, 176, 177, 178, 179, 181, 182, 183, 184...
OpenGLContext tests/nehe5.py Lines: 47, 49, 51, 53, 55, 57, 59, 61, 63, 65, 67, 69, 78, 79, 80, 81, 83, 84, 85, 86...
OpenGLContext tests/nehe3.py Lines: 36, 38, 40, 48, 49, 50, 51
OpenGLContext tests/multitexture_1.py Lines: 63, 64, 65, 66
OpenGLContext tests/nehe7.py Lines: 180, 181, 182, 183, 186, 187, 188, 189, 192, 193, 194, 195, 198, 199, 200, 201, 204, 205, 206, 207...
OpenGLContext OpenGLContext/scenegraph/indexedlineset.py Lines: 76, 84, 98
OpenGLContext OpenGLContext/scenegraph/gear.py Lines: 94, 95, 96, 97, 105, 106, 107, 108, 117, 118, 119, 120, 128, 129, 130, 131, 138, 139, 146, 147...
OpenGL-Demo PyOpenGL-Demo/redbook/hello.py Lines: 67, 68, 69, 70
OpenGL-Demo PyOpenGL-Demo/GLUT/glutplane.py Lines: 53, 54, 56, 57, 72, 73, 78, 81, 82, 84, 85, 88
OpenGL-Demo PyOpenGL-Demo/GLUT/gears.py Lines: 29, 30, 31, 32, 40, 41, 42, 43, 52, 53, 54, 55, 63, 64, 65, 66, 73, 74, 81, 82...
OpenGL-Demo PyOpenGL-Demo/GLUT/tom/lorentz.py Lines: 43, 53
OpenGL-Demo PyOpenGL-Demo/GLUT/tom/logo.py Lines: 14
OpenGL-Demo PyOpenGL-Demo/proesch/simpleTexture/texturedQuad.py Lines: 53, 55, 57, 59
OpenGL-Demo PyOpenGL-Demo/proesch/simple/simpleInteraction.py Lines: 132, 133, 134, 135
OpenGL-Demo PyOpenGL-Demo/proesch/simple/simpleQuad.py Lines: 21, 22, 23, 24
OpenGL-Demo PyOpenGL-Demo/proesch/simple/simpleAnimation.py Lines: 40, 41, 42, 43
OpenGL-Demo PyOpenGL-Demo/proesch/shaderProg/textureShader.py Lines: 136, 138, 140, 142
OpenGL-Demo PyOpenGL-Demo/tom/logo.py Lines: 16
OpenGL-Demo PyOpenGL-Demo/dek/tile.py Lines: 36, 37, 38, 39
OpenGL-Demo PyOpenGL-Demo/dek/OglSurface/triangle.py Lines: 95, 100
OpenGL-Demo PyOpenGL-Demo/NeHe/lesson5.py Lines: 99, 101, 103, 106, 108, 110, 113, 115, 117, 121, 123, 125, 136, 137, 138, 139, 142, 143, 144, 145...
OpenGL-Demo PyOpenGL-Demo/NeHe/lesson18.py Lines: 144, 145, 146, 147, 150, 151, 152, 153, 156, 157, 158, 159, 162, 163, 164, 165, 168, 169, 170, 171...
OpenGL-Demo PyOpenGL-Demo/NeHe/lesson4.py Lines: 99, 101, 103, 118, 119, 120, 121
OpenGL-Demo PyOpenGL-Demo/NeHe/lesson12.py Lines: 75, 76, 77, 78, 80, 81, 82, 83, 85, 86, 87, 88, 90, 91, 92, 93, 95, 96, 97, 98...
OpenGL-Demo PyOpenGL-Demo/NeHe/lesson26.py Lines: 121, 124, 127, 130
OpenGL-Demo PyOpenGL-Demo/NeHe/lesson41.py Lines: 227, 228, 229, 230, 240, 241, 242, 243, 250, 251, 252, 253, 260, 261, 262, 263, 270, 271, 272, 273
OpenGL-Demo PyOpenGL-Demo/NeHe/lesson2.py Lines: 84, 85, 86, 95, 96, 97, 98
OpenGL-Demo PyOpenGL-Demo/NeHe/lesson11.py Lines: 96, 101, 105, 109
OpenGL-Demo PyOpenGL-Demo/NeHe/lesson19.py Lines: 151, 152, 153, 154
OpenGL-Demo PyOpenGL-Demo/NeHe/lesson3.py Lines: 86, 88, 90, 100, 101, 102, 103
OpenGL-Demo PyOpenGL-Demo/NeHe/lesson23.py Lines: 96, 97, 98, 99, 103, 104, 105, 106, 110, 111, 112, 113, 117, 118, 119, 120, 124, 125, 126, 127...
OpenGL-Demo PyOpenGL-Demo/NeHe/lesson6.py Lines: 126, 127, 128, 129, 132, 133, 134, 135, 138, 139, 140, 141, 144, 145, 146, 147, 150, 151, 152, 153...
OpenGL-Demo PyOpenGL-Demo/NeHe/lesson16.py Lines: 109, 110, 111, 112, 115, 116, 117, 118, 121, 122, 123, 124, 127, 128, 129, 130, 133, 134, 135, 136...
OpenGL-Demo PyOpenGL-Demo/NeHe/lesson42.py Lines: 336, 337, 338, 339
OpenGL-Demo PyOpenGL-Demo/NeHe/lesson6-multi.py Lines: 165, 166, 167, 168, 171, 172, 173, 174, 177, 178, 179, 180, 183, 184, 185, 186, 189, 190, 191, 192...
OpenGL-Demo PyOpenGL-Demo/NeHe/lesson48/Lesson48.py Lines: 120, 123
Glinter Widget.py Lines: 212, 213, 214, 215, 227, 229, 230, 232, 233, 235, 236, 238, 251, 252, 254, 255, 257, 258, 396, 397...
{Artistic License} PymmLib applications/glutviewer.py Lines: 86, 87, 88, 89, 98, 99, 100, 101
{Artistic License} PymmLib mmLib/OpenGLDriver.py Lines: 413, 418, 424, 425, 482, 483, 519, 520, 524, 525, 529, 530, 565, 566, 567, 568, 569, 570
pyBzEdit pyBzEdit.py Lines: 451, 452, 458, 459, 464, 465, 466, 467, 549, 550, 551, 552, 558, 559, 560, 561, 567, 568, 569, 570...
{LGPL} VisionEgg VisionEgg/SphereMap.py Lines: 170, 171, 180, 181, 476, 479, 482, 485, 758, 761, 764, 767, 1118, 1121, 1124, 1127, 1159, 1161, 1163, 1165
{LGPL} VisionEgg VisionEgg/MoreStimuli.py Lines: 129, 130, 131, 132, 166, 167, 168, 169, 325, 326, 327, 328, 332, 333, 334, 368, 369, 370, 371, 372...
{LGPL} VisionEgg VisionEgg/Gratings.py Lines: 412, 415, 418, 421
{LGPL} VisionEgg VisionEgg/Dots.py Lines: 43
{LGPL} PyMT pymt/lib/squirtle.py Lines: 17, 521, 541
{GPL} GLChess src/lib/scene/opengl/opengl.py Lines: 705, 707, 709, 711, 849, 851, 853, 855, 879, 880, 881, 882
{LGPL} Pyggel pyggel/geometry.py Lines: 130, 211, 213, 215, 217, 220, 222, 224, 226, 271, 273, 275, 277, 280, 282, 284, 286, 436, 564, 637
{LGPL} Pyggel pyggel/misc.py Lines: 314, 318
{LGPL} Pyggel pyggel/image.py Lines: 66, 69, 72, 75, 208, 211, 214, 217
{LGPL} Pyggel pyggel/mesh.py Lines: 153
{LGPL} pygl2d pygl2d/image.py Lines: 125, 126, 127, 128
{LGPL} pygl2d pygl2d/draw.py Lines: 38, 39, 57, 59, 77
{LGPL or GPL or MPL} Kamaelia Code/Python/Kamaelia/Kamaelia/UI/OpenGL/OpenGLDisplay.py Lines: 848, 849, 850, 851
{LGPL or GPL or MPL} Kamaelia Code/Python/Kamaelia/Kamaelia/UI/OpenGL/SimpleButton.py Lines: 110, 111, 112, 113, 115, 116, 117, 118, 120, 121, 122, 123, 125, 126, 127, 128, 132, 133, 134, 135...
{LGPL or GPL or MPL} Kamaelia Code/Python/Kamaelia/Kamaelia/UI/OpenGL/ProgressBar.py Lines: 113, 114, 115, 116, 118, 119, 120, 121, 123, 124, 125, 126, 128, 129, 130, 131, 145, 146, 147, 148...
{LGPL or GPL or MPL} Kamaelia Code/Python/Kamaelia/Kamaelia/UI/OpenGL/SkyGrassBackground.py Lines: 67, 68, 69, 70, 72, 73, 74, 75
{LGPL or GPL or MPL} Kamaelia Code/Python/Kamaelia/Kamaelia/UI/OpenGL/TexPlane.py Lines: 101, 102, 103, 104
{LGPL or GPL or MPL} Kamaelia Code/Python/Kamaelia/Kamaelia/UI/OpenGL/ArrowButton.py Lines: 73, 74, 75, 76, 78, 79, 80, 81, 83, 84, 85, 86, 92, 93, 94, 96, 97, 98
{LGPL or GPL or MPL} Kamaelia Code/Python/Kamaelia/Kamaelia/UI/OpenGL/PygameWrapper.py Lines: 162, 163, 164, 165, 167, 168, 169, 170, 172, 173, 174, 175, 177, 178, 179, 180, 182, 183, 184, 185...
{LGPL or GPL or MPL} Kamaelia Code/Python/Kamaelia/Kamaelia/UI/OpenGL/Label.py Lines: 123, 124, 125, 126, 128, 129, 130, 131, 133, 134, 135, 136, 138, 139, 140, 141, 151, 153, 155, 157...
{LGPL or GPL or MPL} Kamaelia Code/Python/Kamaelia/Kamaelia/UI/OpenGL/Button.py Lines: 148, 149, 150, 151, 153, 154, 155, 156, 158, 159, 160, 161, 163, 164, 165, 166, 176, 178, 180, 182...
{LGPL or GPL or MPL} Kamaelia Code/Python/Kamaelia/Kamaelia/UI/OpenGL/SimpleCube.py Lines: 76, 77, 78, 79, 83, 84, 85, 86, 90, 91, 92, 93, 97, 98, 99, 100, 104, 105, 106, 107...
{LGPL or GPL or MPL} Kamaelia Sketches/MH/OpenGL/3dFolding.py Lines: 123
{LGPL or GPL or MPL} Kamaelia Sketches/MH/OpenGL/Folding.py Lines: 40, 46
{LGPL or GPL or MPL} Kamaelia Sketches/CL/Topology3D/Utils/Particles3D.py Lines: 194, 195, 196, 197, 199, 200, 201, 202, 204, 205, 206, 207, 209, 210, 211, 212, 222, 224, 226, 228...
{LGPL or GPL or MPL} Kamaelia Sketches/CL/Topology3D/Experiments/Cubes.py Lines: 188, 189, 190, 191, 195, 196, 197, 198, 201, 202, 203, 204, 207, 208, 209, 210, 213, 214, 215, 216...
{LGPL or GPL or MPL} Kamaelia Sketches/CL/Topology3D/THF/Examples/simplecube/simplecube_controlled.py Lines: 111, 112, 113, 114, 117, 118, 119, 120, 123, 124, 125, 126, 129, 130, 131, 132, 135, 136, 137, 138...
{LGPL or GPL or MPL} Kamaelia Sketches/CL/Topology3D/THF/Examples/simplecube/simplecube.py Lines: 50, 51, 52, 53, 56, 57, 58, 59, 62, 63, 64, 65, 68, 69, 70, 71, 74, 75, 76, 77...
{LGPL or GPL or MPL} Kamaelia Sketches/CL/Topology3D/THF/Kamaelia/UI/OpenGL/OpenGLDisplay.py Lines: 849, 850, 851, 852
{LGPL or GPL or MPL} Kamaelia Sketches/CL/Topology3D/THF/Kamaelia/UI/OpenGL/SimpleButton.py Lines: 110, 111, 112, 113, 115, 116, 117, 118, 120, 121, 122, 123, 125, 126, 127, 128, 132, 133, 134, 135...
{LGPL or GPL or MPL} Kamaelia Sketches/CL/Topology3D/THF/Kamaelia/UI/OpenGL/ProgressBar.py Lines: 113, 114, 115, 116, 118, 119, 120, 121, 123, 124, 125, 126, 128, 129, 130, 131, 145, 146, 147, 148...
{LGPL or GPL or MPL} Kamaelia Sketches/CL/Topology3D/THF/Kamaelia/UI/OpenGL/SkyGrassBackground.py Lines: 67, 68, 69, 70, 72, 73, 74, 75
{LGPL or GPL or MPL} Kamaelia Sketches/CL/Topology3D/THF/Kamaelia/UI/OpenGL/TexPlane.py Lines: 101, 102, 103, 104
{LGPL or GPL or MPL} Kamaelia Sketches/CL/Topology3D/THF/Kamaelia/UI/OpenGL/ArrowButton.py Lines: 73, 74, 75, 76, 78, 79, 80, 81, 83, 84, 85, 86, 92, 93, 94, 96, 97, 98
{LGPL or GPL or MPL} Kamaelia Sketches/CL/Topology3D/THF/Kamaelia/UI/OpenGL/PygameWrapper.py Lines: 162, 163, 164, 165, 167, 168, 169, 170, 172, 173, 174, 175, 177, 178, 179, 180, 182, 183, 184, 185...
{LGPL or GPL or MPL} Kamaelia Sketches/CL/Topology3D/THF/Kamaelia/UI/OpenGL/Label.py Lines: 123, 124, 125, 126, 128, 129, 130, 131, 133, 134, 135, 136, 138, 139, 140, 141, 151, 153, 155, 157...
{LGPL or GPL or MPL} Kamaelia Sketches/CL/Topology3D/THF/Kamaelia/UI/OpenGL/Button.py Lines: 152, 153, 154, 155, 157, 158, 159, 160, 162, 163, 164, 165, 167, 168, 169, 170, 180, 182, 184, 186...
{LGPL or GPL or MPL} Kamaelia Sketches/CL/Topology3D/THF/Kamaelia/UI/OpenGL/SimpleCube.py Lines: 76, 77, 78, 79, 83, 84, 85, 86, 90, 91, 92, 93, 97, 98, 99, 100, 104, 105, 106, 107...
{LGPL or GPL or MPL} Kamaelia Sketches/CL/Topology3D/THF/Sketches/PygameWrapperPlane.py Lines: 159, 160, 161, 162
{LGPL or GPL or MPL} Kamaelia Sketches/CL/Topology3D/THF/Sketches/Button3D.py Lines: 191, 192, 193, 194, 196, 197, 198, 199, 201, 202, 203, 204, 206, 207, 208, 209, 220, 222, 224, 226...
{LGPL or GPL or MPL} Kamaelia Sketches/CL/Topology3D/THF/Sketches/TexPlane.py Lines: 149, 150, 151, 152
{LGPL or GPL or MPL} Kamaelia Sketches/CL/Topology3D/THF/Sketches/Scrollbar3D.py Lines: 174, 175, 176, 177, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 199, 200, 201, 202...
{LGPL or GPL or MPL} Kamaelia Sketches/CL/Topology3D/THF/Sketches/Display3D.py Lines: 487, 488, 489, 490, 500, 501, 502, 503, 505, 506, 507, 508
{LGPL or GPL or MPL} Kamaelia Sketches/CL/Topology3D/THF/Sketches/Progress3D.py Lines: 152, 153, 154, 155, 157, 158, 159, 160, 162, 163, 164, 165, 167, 168, 169, 170, 182, 183, 184, 185...
{LGPL or GPL or MPL} Kamaelia Sketches/CL/Topology3D/THF/Sketches/Object3D.py Lines: 128, 129, 130, 131, 134, 135, 136, 137, 140, 141, 142, 143, 146, 147, 148, 149, 152, 153, 154, 155...
{LGPL or GPL or MPL} Kamaelia Sketches/CL/Topology3D/THF/Sketches/SimpleCube.py Lines: 144, 145, 146, 147, 150, 151, 152, 153, 156, 157, 158, 159, 162, 163, 164, 165, 168, 169, 170, 171...
{LGPL or GPL or MPL} Kamaelia Sketches/CL/Topology3D/THF/Sketches/playground/ProgressBar.py Lines: 69, 70, 71, 72, 74, 75, 76, 77, 79, 80, 81, 82, 84, 85, 86, 87, 89, 90, 91, 92...
{LGPL or GPL or MPL} Kamaelia Sketches/CL/Topology3D/THF/Sketches/playground/SkyGrassBackground.py Lines: 49, 50, 51, 52, 54, 55, 56, 57
{LGPL or GPL or MPL} Kamaelia Sketches/CL/Topology3D/THF/Sketches/playground/PygameWrapperPlane.py Lines: 81, 83, 85, 87
{LGPL or GPL or MPL} Kamaelia Sketches/CL/Topology3D/THF/Sketches/playground/TexPlane.py Lines: 62, 63, 64, 65
{LGPL or GPL or MPL} Kamaelia Sketches/CL/Topology3D/THF/Sketches/playground/Display3D.py Lines: 538, 539, 540, 541
{LGPL or GPL or MPL} Kamaelia Sketches/CL/Topology3D/THF/Sketches/playground/Button.py Lines: 79, 80, 81, 82, 84, 85, 86, 87, 89, 90, 91, 92, 94, 95, 96, 97, 108, 110, 112, 114...
{LGPL or GPL or MPL} Kamaelia Sketches/CL/Topology3D/THF/Sketches/playground/SimpleCube.py Lines: 53, 54, 55, 56, 59, 60, 61, 62, 65, 66, 67, 68, 71, 72, 73, 74, 77, 78, 79, 80...
{LGPL or GPL or MPL} Kamaelia Sketches/THF/3D/PygameWrapperPlane.py Lines: 159, 160, 161, 162
{LGPL or GPL or MPL} Kamaelia Sketches/THF/3D/Button3D.py Lines: 191, 192, 193, 194, 196, 197, 198, 199, 201, 202, 203, 204, 206, 207, 208, 209, 220, 222, 224, 226...
{LGPL or GPL or MPL} Kamaelia Sketches/THF/3D/TexPlane.py Lines: 149, 150, 151, 152
{LGPL or GPL or MPL} Kamaelia Sketches/THF/3D/Scrollbar3D.py Lines: 174, 175, 176, 177, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 199, 200, 201, 202...
{LGPL or GPL or MPL} Kamaelia Sketches/THF/3D/Display3D.py Lines: 487, 488, 489, 490, 500, 501, 502, 503, 505, 506, 507, 508
{LGPL or GPL or MPL} Kamaelia Sketches/THF/3D/Progress3D.py Lines: 152, 153, 154, 155, 157, 158, 159, 160, 162, 163, 164, 165, 167, 168, 169, 170, 182, 183, 184, 185...
{LGPL or GPL or MPL} Kamaelia Sketches/THF/3D/Object3D.py Lines: 128, 129, 130, 131, 134, 135, 136, 137, 140, 141, 142, 143, 146, 147, 148, 149, 152, 153, 154, 155...
{LGPL or GPL or MPL} Kamaelia Sketches/THF/3D/SimpleCube.py Lines: 144, 145, 146, 147, 150, 151, 152, 153, 156, 157, 158, 159, 162, 163, 164, 165, 168, 169, 170, 171...
{LGPL or GPL or MPL} Kamaelia Sketches/THF/3D/playground/ProgressBar.py Lines: 69, 70, 71, 72, 74, 75, 76, 77, 79, 80, 81, 82, 84, 85, 86, 87, 89, 90, 91, 92...
{LGPL or GPL or MPL} Kamaelia Sketches/THF/3D/playground/SkyGrassBackground.py Lines: 49, 50, 51, 52, 54, 55, 56, 57
{LGPL or GPL or MPL} Kamaelia Sketches/THF/3D/playground/PygameWrapperPlane.py Lines: 81, 83, 85, 87
{LGPL or GPL or MPL} Kamaelia Sketches/THF/3D/playground/TexPlane.py Lines: 62, 63, 64, 65
{LGPL or GPL or MPL} Kamaelia Sketches/THF/3D/playground/Display3D.py Lines: 538, 539, 540, 541
{LGPL or GPL or MPL} Kamaelia Sketches/THF/3D/playground/Button.py Lines: 79, 80, 81, 82, 84, 85, 86, 87, 89, 90, 91, 92, 94, 95, 96, 97, 108, 110, 112, 114...
{LGPL or GPL or MPL} Kamaelia Sketches/THF/3D/playground/SimpleCube.py Lines: 53, 54, 55, 56, 59, 60, 61, 62, 65, 66, 67, 68, 71, 72, 73, 74, 77, 78, 79, 80...
{LGPL or GPL or MPL} Kamaelia Sketches/THF/Packages/Kamaelia/Community/THF/Kamaelia/UI/OpenGL/OpenGLDisplay.py Lines: 848, 849, 850, 851
{LGPL or GPL or MPL} Kamaelia Sketches/THF/Packages/Kamaelia/Community/THF/Kamaelia/UI/OpenGL/SimpleButton.py Lines: 110, 111, 112, 113, 115, 116, 117, 118, 120, 121, 122, 123, 125, 126, 127, 128, 132, 133, 134, 135...
{LGPL or GPL or MPL} Kamaelia Sketches/THF/Packages/Kamaelia/Community/THF/Kamaelia/UI/OpenGL/ProgressBar.py Lines: 113, 114, 115, 116, 118, 119, 120, 121, 123, 124, 125, 126, 128, 129, 130, 131, 145, 146, 147, 148...
{LGPL or GPL or MPL} Kamaelia Sketches/THF/Packages/Kamaelia/Community/THF/Kamaelia/UI/OpenGL/SkyGrassBackground.py Lines: 67, 68, 69, 70, 72, 73, 74, 75
{LGPL or GPL or MPL} Kamaelia Sketches/THF/Packages/Kamaelia/Community/THF/Kamaelia/UI/OpenGL/TexPlane.py Lines: 101, 102, 103, 104
{LGPL or GPL or MPL} Kamaelia Sketches/THF/Packages/Kamaelia/Community/THF/Kamaelia/UI/OpenGL/ArrowButton.py Lines: 73, 74, 75, 76, 78, 79, 80, 81, 83, 84, 85, 86, 92, 93, 94, 96, 97, 98
{LGPL or GPL or MPL} Kamaelia Sketches/THF/Packages/Kamaelia/Community/THF/Kamaelia/UI/OpenGL/PygameWrapper.py Lines: 162, 163, 164, 165, 167, 168, 169, 170, 172, 173, 174, 175, 177, 178, 179, 180, 182, 183, 184, 185...
{LGPL or GPL or MPL} Kamaelia Sketches/THF/Packages/Kamaelia/Community/THF/Kamaelia/UI/OpenGL/Label.py Lines: 123, 124, 125, 126, 128, 129, 130, 131, 133, 134, 135, 136, 138, 139, 140, 141, 151, 153, 155, 157...
{LGPL or GPL or MPL} Kamaelia Sketches/THF/Packages/Kamaelia/Community/THF/Kamaelia/UI/OpenGL/Button.py Lines: 148, 149, 150, 151, 153, 154, 155, 156, 158, 159, 160, 161, 163, 164, 165, 166, 176, 178, 180, 182...
{LGPL or GPL or MPL} Kamaelia Sketches/THF/Packages/Kamaelia/Community/THF/Kamaelia/UI/OpenGL/SimpleCube.py Lines: 76, 77, 78, 79, 83, 84, 85, 86, 90, 91, 92, 93, 97, 98, 99, 100, 104, 105, 106, 107...
{LGPL or GPL or MPL} Kamaelia Sketches/THF/simplecube/simplecube_controlled.py Lines: 111, 112, 113, 114, 117, 118, 119, 120, 123, 124, 125, 126, 129, 130, 131, 132, 135, 136, 137, 138...
{LGPL or GPL or MPL} Kamaelia Sketches/THF/simplecube/simplecube.py Lines: 50, 51, 52, 53, 56, 57, 58, 59, 62, 63, 64, 65, 68, 69, 70, 71, 74, 75, 76, 77...
{LGPL or GPL or MPL} Kamaelia Sketches/MPS/Old/SoC/simplecube.py Lines: 86, 87, 88, 89, 92, 93, 94, 95, 98, 99, 100, 101, 104, 105, 106, 107, 110, 111, 112, 113...
glVertex3fv
OpenGL-Demo PyOpenGL-Demo/dek/OglSurface/OglFrame.py Lines: 27, 28, 32, 33, 37, 38
OpenGL-Demo PyOpenGL-Demo/dek/OglSurface/triangle.py Lines: 65, 70, 75
{GPL} GLChess src/lib/scene/opengl/opengl.py Lines: 811, 813, 815, 817
{GPL} GLChess src/lib/scene/opengl/builtin_models.py Lines: 239, 243, 247, 256, 260, 263, 264, 274, 278, 282, 286, 318
glVertex4dv
OpenGLContext OpenGLContext/shadow/volume.py Lines: 323, 325
glVertex4f
{LGPL} VisionEgg VisionEgg/Textures.py Lines: 1901, 1905, 1908, 1911

MathML Rendering

Powered by MathJax
Previous: glValidateProgramPipeline Table of Contents (GL) Next: glVertexAttrib