2012-03-09 17:38:15 +00:00
|
|
|
from OpenGL.GL import *
|
|
|
|
from .. GLGraphicsItem import GLGraphicsItem
|
|
|
|
from pyqtgraph import QtGui
|
|
|
|
|
|
|
|
__all__ = ['GLGridItem']
|
|
|
|
|
|
|
|
class GLGridItem(GLGraphicsItem):
|
2012-04-23 18:34:54 +00:00
|
|
|
"""
|
|
|
|
**Bases:** :class:`GLGraphicsItem <pyqtgraph.opengl.GLGraphicsItem>`
|
|
|
|
|
|
|
|
Displays a wire-grame grid.
|
|
|
|
"""
|
|
|
|
|
2013-03-31 02:39:11 +00:00
|
|
|
def __init__(self, size=None, color=None, antialias=True, glOptions='translucent'):
|
2012-03-09 17:38:15 +00:00
|
|
|
GLGraphicsItem.__init__(self)
|
2012-11-23 22:34:22 +00:00
|
|
|
self.setGLOptions(glOptions)
|
2013-03-31 02:39:11 +00:00
|
|
|
self.antialias = antialias
|
2012-03-09 17:38:15 +00:00
|
|
|
if size is None:
|
|
|
|
size = QtGui.QVector3D(1,1,1)
|
|
|
|
self.setSize(size=size)
|
|
|
|
|
|
|
|
def setSize(self, x=None, y=None, z=None, size=None):
|
|
|
|
"""
|
|
|
|
Set the size of the axes (in its local coordinate system; this does not affect the transform)
|
|
|
|
Arguments can be x,y,z or size=QVector3D().
|
|
|
|
"""
|
|
|
|
if size is not None:
|
|
|
|
x = size.x()
|
|
|
|
y = size.y()
|
|
|
|
z = size.z()
|
|
|
|
self.__size = [x,y,z]
|
|
|
|
self.update()
|
|
|
|
|
|
|
|
def size(self):
|
|
|
|
return self.__size[:]
|
|
|
|
|
|
|
|
|
|
|
|
def paint(self):
|
2012-11-23 22:34:22 +00:00
|
|
|
self.setupGLState()
|
2013-03-31 02:39:11 +00:00
|
|
|
|
|
|
|
if self.antialias:
|
|
|
|
glEnable(GL_LINE_SMOOTH)
|
|
|
|
glEnable(GL_BLEND)
|
|
|
|
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA)
|
|
|
|
glHint(GL_LINE_SMOOTH_HINT, GL_NICEST);
|
|
|
|
|
2012-03-09 17:38:15 +00:00
|
|
|
glBegin( GL_LINES )
|
|
|
|
|
|
|
|
x,y,z = self.size()
|
|
|
|
glColor4f(1, 1, 1, .3)
|
|
|
|
for x in range(-10, 11):
|
|
|
|
glVertex3f(x, -10, 0)
|
|
|
|
glVertex3f(x, 10, 0)
|
|
|
|
for y in range(-10, 11):
|
|
|
|
glVertex3f(-10, y, 0)
|
|
|
|
glVertex3f( 10, y, 0)
|
|
|
|
|
|
|
|
glEnd()
|