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.
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 OpenGLContext/scenegraph/text/font.py Lines: 229, 230, 231, 232, 251, 252, 253, 254, 272, 273, 274, 275
OpenGLContext OpenGLContext/scenegraph/text/toolsfont.py Lines: 47, 73
OpenGLContext tests/_bitmap_font.py Lines: 58, 60, 72, 74, 87, 89
OpenGLContext tests/redbook_surface_cb.py Lines: 146
{LGPL} VisionEgg VisionEgg/MoreStimuli.py Lines: 254, 255, 256, 257
{LGPL} VisionEgg VisionEgg/Gratings.py Lines: 701, 704, 707, 710
{LGPL} VisionEgg VisionEgg/Textures.py Lines: 1300, 1304, 1308, 1312, 1609, 1612, 1615, 1618
{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 Code/Python/Kamaelia/Examples/OpenGL/MiniExamples/OpenGLComponent.py Lines: 34, 46, 47, 48, 49
{LGPL or GPL or MPL} Kamaelia Code/Python/Kamaelia/Examples/OpenGL/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/CL/Topology3D/THF/Examples/Checkers/CheckersBoard.py Lines: 50, 51, 52, 53
{LGPL or GPL or MPL} Kamaelia Sketches/MPS/BugReports/FixTests/Kamaelia/Kamaelia/UI/OpenGL/OpenGLComponent.py Lines: 462, 474, 475, 476, 477
{LGPL or GPL or MPL} Kamaelia Sketches/MPS/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/THF/Packages/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: 111, 113
glVertex2dv
OpenGLContext tests/glu_tess.py Lines: 63
glVertex2f
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
OpenGL-Demo PyOpenGL-Demo/NeHe/lesson43/glFreeType.py Lines: 160, 161, 162, 163
OpenGL-Demo PyOpenGL-Demo/redbook/lines.py Lines: 68, 69, 108
OpenGL-Demo PyOpenGL-Demo/redbook/smooth.py Lines: 71, 73, 75
OpenGL-Demo PyOpenGL-Demo/tom/demo.py Lines: 54, 56, 58, 60
OpenGL-Demo PyOpenGL-Demo/tom/Line.py Lines: 13, 15, 17, 19
{LGPL} PyUI2 system/openglgraphics.py Lines: 123
{LGPL} VisionEgg VisionEgg/Core.py Lines: 1505, 1506, 1507, 1508
{LGPL} VisionEgg VisionEgg/Textures.py Lines: 1497, 1500, 1503, 1506, 1831, 1834, 1837, 1840, 1856, 1859, 1862, 1865, 1870, 1873, 1876, 1879
{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/draw.py Lines: 165, 166, 171, 174, 177, 178, 183, 186, 189, 190, 195, 198, 201, 202, 207, 210, 270, 315, 316, 317...
{LGPL} PyMT pymt/graphx/bezier.py Lines: 38, 116
{LGPL} PyMT pymt/graphx/paint.py Lines: 17, 132
{LGPL} pygl2d pygl2d/draw.py Lines: 100
{GPL} Scocca scocca/graphics/opengl/draw.py Lines: 29, 30, 62, 70
Visvis functions/boxplot.py Lines: 273, 274, 275, 276, 281, 282, 284, 285, 286, 287, 289, 290, 291, 292, 314, 340, 341, 342, 343
Visvis wibjects/sliders.py Lines: 381, 382, 383, 384
Visvis wibjects/colorWibjects.py Lines: 680, 681, 682, 683, 701, 702, 703, 704
Visvis core/axes.py Lines: 986, 988, 990, 992
Visvis core/baseWibjects.py Lines: 74, 75, 76, 77, 96, 97, 98, 99
Visvis core/base.py Lines: 618, 619, 620, 621
glVertex2fv
OpenGLContext tests/test_glvertex2fcrash.py Lines: 16
{LGPL} VisionEgg VisionEgg/MoreStimuli.py Lines: 479, 480, 519, 520
glVertex2i
OpenGL-Demo PyOpenGL-Demo/NeHe/lesson42.py Lines: 304, 305, 306, 307
{LGPL} PyUI2 renderers/openglBase.py Lines: 140, 141, 142, 143, 155, 157, 159, 161, 168, 169, 186, 188, 190, 192, 231, 233, 235, 237
{LGPL} PyUI2 renderers/openglPygame.py Lines: 298, 300, 302, 304
{LGPL} PyUI2 system/openglgraphics.py Lines: 85, 102, 103, 104, 105, 132, 140, 158, 160, 162, 164, 350, 352, 354, 356
glVertex3d
OpenGL-Demo PyOpenGL-Demo/tom/lorentz.py Lines: 31, 40
Visvis wobjects/textures.py Lines: 572, 573, 574, 575
Visvis wobjects/sliceTextures.py Lines: 249, 254, 255, 256, 257
glVertex3dv
OpenGLContext OpenGLContext/browser/vpcurve.py Lines: 91
OpenGLContext OpenGLContext/scenegraph/indexedfaceset.py Lines: 593, 603, 605, 627
OpenGLContext OpenGLContext/scenegraph/boundingvolume.py Lines: 262, 268, 269
OpenGLContext tests/glvertex.py Lines: 17
glVertex3f
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...
OpenGLContext OpenGLContext/scenegraph/indexedlineset.py Lines: 78, 86, 100
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/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/nehe6_compressed.py Lines: 63, 64, 65, 66, 68, 69, 70, 71, 73, 74, 75, 76, 78, 79, 80, 81, 83, 84, 85, 86...
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/nehe6_convolve.py Lines: 162, 163, 164, 165, 167, 168, 169, 170, 172, 173, 174, 175, 177, 178, 179, 180, 182, 183, 184, 185...
OpenGLContext tests/multitexture_1.py Lines: 64, 65, 66, 67
OpenGLContext tests/nehe2.py Lines: 49, 50, 51, 59, 60, 61, 62
OpenGLContext tests/nehe7.py Lines: 181, 182, 183, 184, 187, 188, 189, 190, 193, 194, 195, 196, 199, 200, 201, 202, 205, 206, 207, 208...
OpenGLContext tests/nehe3.py Lines: 36, 38, 40, 48, 49, 50, 51
OpenGLContext tests/nehe6_timer.py Lines: 106, 107, 108, 109, 111, 112, 113, 114, 116, 117, 118, 119, 121, 122, 123, 124, 126, 127, 128, 129...
OpenGLContext tests/glu_tess2.py Lines: 60
OpenGLContext tests/redbook_alpha.py Lines: 91, 92, 93, 99, 100, 101
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/nehe4.py Lines: 54, 56, 58, 71, 72, 73, 74
OpenGL-Demo PyOpenGL-Demo/NeHe/lesson11.py Lines: 99, 104, 108, 112
OpenGL-Demo PyOpenGL-Demo/NeHe/lesson18.py Lines: 146, 147, 148, 149, 152, 153, 154, 155, 158, 159, 160, 161, 164, 165, 166, 167, 170, 171, 172, 173...
OpenGL-Demo PyOpenGL-Demo/NeHe/lesson6.py Lines: 128, 129, 130, 131, 134, 135, 136, 137, 140, 141, 142, 143, 146, 147, 148, 149, 152, 153, 154, 155...
OpenGL-Demo PyOpenGL-Demo/NeHe/lesson41.py Lines: 229, 230, 231, 232, 242, 243, 244, 245, 252, 253, 254, 255, 262, 263, 264, 265, 272, 273, 274, 275
OpenGL-Demo PyOpenGL-Demo/NeHe/lesson16.py Lines: 111, 112, 113, 114, 117, 118, 119, 120, 123, 124, 125, 126, 129, 130, 131, 132, 135, 136, 137, 138...
OpenGL-Demo PyOpenGL-Demo/NeHe/lesson23.py Lines: 98, 99, 100, 101, 105, 106, 107, 108, 112, 113, 114, 115, 119, 120, 121, 122, 126, 127, 128, 129...
OpenGL-Demo PyOpenGL-Demo/NeHe/lesson5.py Lines: 101, 103, 105, 108, 110, 112, 115, 117, 119, 123, 125, 127, 138, 139, 140, 141, 144, 145, 146, 147...
OpenGL-Demo PyOpenGL-Demo/NeHe/lesson4.py Lines: 101, 103, 105, 120, 121, 122, 123
OpenGL-Demo PyOpenGL-Demo/NeHe/lesson26.py Lines: 123, 126, 129, 132
OpenGL-Demo PyOpenGL-Demo/NeHe/lesson12.py Lines: 78, 79, 80, 81, 83, 84, 85, 86, 88, 89, 90, 91, 93, 94, 95, 96, 98, 99, 100, 101...
OpenGL-Demo PyOpenGL-Demo/NeHe/lesson3.py Lines: 88, 90, 92, 102, 103, 104, 105
OpenGL-Demo PyOpenGL-Demo/NeHe/lesson19.py Lines: 155, 156, 157, 158
OpenGL-Demo PyOpenGL-Demo/NeHe/lesson42.py Lines: 329, 330, 331, 332
OpenGL-Demo PyOpenGL-Demo/NeHe/lesson2.py Lines: 86, 87, 88, 97, 98, 99, 100
OpenGL-Demo PyOpenGL-Demo/NeHe/lesson6-multi.py Lines: 168, 169, 170, 171, 174, 175, 176, 177, 180, 181, 182, 183, 186, 187, 188, 189, 192, 193, 194, 195...
OpenGL-Demo PyOpenGL-Demo/NeHe/lesson48/Lesson48.py Lines: 120, 123
OpenGL-Demo PyOpenGL-Demo/proesch/simple/simpleInteraction.py Lines: 135, 136, 137, 138
OpenGL-Demo PyOpenGL-Demo/proesch/simple/simpleAnimation.py Lines: 42, 43, 44, 45
OpenGL-Demo PyOpenGL-Demo/proesch/simple/simpleQuad.py Lines: 23, 24, 25, 26
OpenGL-Demo PyOpenGL-Demo/proesch/shaderProg/textureShader.py Lines: 139, 141, 143, 145
OpenGL-Demo PyOpenGL-Demo/proesch/simpleTexture/texturedQuad.py Lines: 56, 58, 60, 62
OpenGL-Demo PyOpenGL-Demo/dek/tile.py Lines: 37, 38, 39, 40
OpenGL-Demo PyOpenGL-Demo/dek/OglSurface/triangle.py Lines: 95, 100
OpenGL-Demo PyOpenGL-Demo/GLUT/gears.py Lines: 32, 33, 34, 35, 43, 44, 45, 46, 55, 56, 57, 58, 66, 67, 68, 69, 76, 77, 84, 85...
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/tom/logo.py Lines: 14
OpenGL-Demo PyOpenGL-Demo/GLUT/tom/lorentz.py Lines: 43, 53
OpenGL-Demo PyOpenGL-Demo/redbook/hello.py Lines: 69, 70, 71, 72
OpenGL-Demo PyOpenGL-Demo/tom/logo.py Lines: 12
{Artistic License} PymmLib pymmlib/applications/glutviewer.py Lines: 86, 87, 88, 89, 98, 99, 100, 101
{Artistic License} PymmLib pymmlib/mmLib/OpenGLDriver.py Lines: 420, 425, 431, 432, 489, 490, 526, 527, 531, 532, 536, 537, 572, 573, 574, 575, 576, 577
{LGPL} VisionEgg VisionEgg/MoreStimuli.py Lines: 129, 130, 131, 132, 166, 167, 168, 169, 333, 334, 335, 336, 340, 341, 342, 376, 377, 378, 379, 380...
{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/Dots.py Lines: 46
{LGPL} VisionEgg VisionEgg/Gratings.py Lines: 412, 415, 418, 421
{LGPL} PyMT pymt/lib/squirtle.py Lines: 17, 521, 541
{LGPL} Pyggel pyggel/image.py Lines: 66, 69, 72, 75, 208, 211, 214, 217
{LGPL} Pyggel pyggel/misc.py Lines: 314, 318
{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/mesh.py Lines: 153
{LGPL} pygl2d pygl2d/image.py Lines: 137, 138, 139, 140
{LGPL} pygl2d pygl2d/draw.py Lines: 47, 48, 66, 68, 80, 115
{LGPL or GPL or MPL} Kamaelia Code/Python/Kamaelia/Kamaelia/Visualisation/PhysicsGraph3D/Particles3D.py Lines: 494, 495, 496, 497, 499, 500, 501, 502, 504, 505, 506, 507, 509, 510, 511, 512, 522, 524, 526, 528...
{LGPL or GPL or MPL} Kamaelia Code/Python/Kamaelia/Kamaelia/UI/OpenGL/OpenGLDisplay.py Lines: 871, 872, 873, 874
{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/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/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 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/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/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/TexPlane.py Lines: 101, 102, 103, 104
{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 Sketches/CL/Topology3D/Utils/Particles3D.py Lines: 230, 231, 232, 233, 235, 236, 237, 238, 240, 241, 242, 243, 245, 246, 247, 248, 258, 260, 262, 264...
{LGPL or GPL or MPL} Kamaelia Sketches/CL/Topology3D/Experiments/Cubes.py Lines: 207, 208, 209, 210, 214, 215, 216, 217, 220, 221, 222, 223, 226, 227, 228, 229, 232, 233, 234, 235...
{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/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/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/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/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/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/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/TexPlane.py Lines: 101, 102, 103, 104
{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/Examples/simplecube/simplecube_controlled.py Lines: 129, 130, 131, 132, 135, 136, 137, 138, 141, 142, 143, 144, 147, 148, 149, 150, 153, 154, 155, 156...
{LGPL or GPL or MPL} Kamaelia Sketches/CL/Topology3D/THF/Examples/simplecube/simplecube.py Lines: 67, 68, 69, 70, 73, 74, 75, 76, 79, 80, 81, 82, 85, 86, 87, 88, 91, 92, 93, 94...
{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/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/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/PygameWrapperPlane.py Lines: 159, 160, 161, 162
{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/TexPlane.py Lines: 149, 150, 151, 152
{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/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/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/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/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/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/MH/OpenGL/3dFolding.py Lines: 142
{LGPL or GPL or MPL} Kamaelia Sketches/MH/OpenGL/Folding.py Lines: 59, 65
{LGPL or GPL or MPL} Kamaelia Sketches/MPS/BugReports/FixTests/Kamaelia/Kamaelia/Visualisation/PhysicsGraph3D/Particles3D.py Lines: 494, 495, 496, 497, 499, 500, 501, 502, 504, 505, 506, 507, 509, 510, 511, 512, 522, 524, 526, 528...
{LGPL or GPL or MPL} Kamaelia Sketches/MPS/BugReports/FixTests/Kamaelia/Kamaelia/UI/OpenGL/OpenGLDisplay.py Lines: 871, 872, 873, 874
{LGPL or GPL or MPL} Kamaelia Sketches/MPS/BugReports/FixTests/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 Sketches/MPS/BugReports/FixTests/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 Sketches/MPS/BugReports/FixTests/Kamaelia/Kamaelia/UI/OpenGL/SkyGrassBackground.py Lines: 67, 68, 69, 70, 72, 73, 74, 75
{LGPL or GPL or MPL} Kamaelia Sketches/MPS/BugReports/FixTests/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/MPS/BugReports/FixTests/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 Sketches/MPS/BugReports/FixTests/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 Sketches/MPS/BugReports/FixTests/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 Sketches/MPS/BugReports/FixTests/Kamaelia/Kamaelia/UI/OpenGL/TexPlane.py Lines: 101, 102, 103, 104
{LGPL or GPL or MPL} Kamaelia Sketches/MPS/BugReports/FixTests/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 Sketches/MPS/Old/SoC/simplecube.py Lines: 104, 105, 106, 107, 110, 111, 112, 113, 116, 117, 118, 119, 122, 123, 124, 125, 128, 129, 130, 131...
{LGPL or GPL or MPL} Kamaelia Sketches/THF/simplecube/simplecube_controlled.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/simplecube/simplecube.py Lines: 67, 68, 69, 70, 73, 74, 75, 76, 79, 80, 81, 82, 85, 86, 87, 88, 91, 92, 93, 94...
{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/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/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/PygameWrapperPlane.py Lines: 159, 160, 161, 162
{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/TexPlane.py Lines: 149, 150, 151, 152
{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/Display3D.py Lines: 487, 488, 489, 490, 500, 501, 502, 503, 505, 506, 507, 508
{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/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/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/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/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/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/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/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/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/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/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/TexPlane.py Lines: 101, 102, 103, 104
{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...
{GPL3} OpenGL-Programmable 02-displaylist.py Lines: 107
{GPL3} OpenGL-Programmable 01-direct.py Lines: 96
glVertex3fv
OpenGL-Demo PyOpenGL-Demo/dek/OglSurface/triangle.py Lines: 65, 70, 75
OpenGL-Demo PyOpenGL-Demo/dek/OglSurface/OglFrame.py Lines: 27, 28, 32, 33, 37, 38
glVertex4dv
OpenGLContext OpenGLContext/shadow/volume.py Lines: 323, 325
glVertex4f
{LGPL} VisionEgg VisionEgg/Textures.py Lines: 1959, 1963, 1966, 1969

MathML Rendering

Powered by MathJax