Skip to content
Snippets Groups Projects
Commit 09bc17bd authored by Luke Campagnola's avatar Luke Campagnola
Browse files

Fixed GLLinePlotItem line width option

Added antialiasing to GL line items
parent 70ec3589
No related branches found
No related tags found
No related merge requests found
...@@ -40,7 +40,7 @@ for i in range(n): ...@@ -40,7 +40,7 @@ for i in range(n):
d = (x**2 + yi**2)**0.5 d = (x**2 + yi**2)**0.5
z = 10 * np.cos(d) / (d+1) z = 10 * np.cos(d) / (d+1)
pts = np.vstack([x,yi,z]).transpose() pts = np.vstack([x,yi,z]).transpose()
plt = gl.GLLinePlotItem(pos=pts, color=pg.glColor((i,n*1.3))) plt = gl.GLLinePlotItem(pos=pts, color=pg.glColor((i,n*1.3)), width=(i+1)/10., antialias=True)
w.addItem(plt) w.addItem(plt)
......
...@@ -12,10 +12,11 @@ class GLAxisItem(GLGraphicsItem): ...@@ -12,10 +12,11 @@ class GLAxisItem(GLGraphicsItem):
""" """
def __init__(self, size=None): def __init__(self, size=None, antialias=True):
GLGraphicsItem.__init__(self) GLGraphicsItem.__init__(self)
if size is None: if size is None:
size = QtGui.QVector3D(1,1,1) size = QtGui.QVector3D(1,1,1)
self.antialias = antialias
self.setSize(size=size) self.setSize(size=size)
def setSize(self, x=None, y=None, z=None, size=None): def setSize(self, x=None, y=None, z=None, size=None):
...@@ -39,8 +40,11 @@ class GLAxisItem(GLGraphicsItem): ...@@ -39,8 +40,11 @@ class GLAxisItem(GLGraphicsItem):
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA) glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA)
glEnable( GL_BLEND ) glEnable( GL_BLEND )
glEnable( GL_ALPHA_TEST ) glEnable( GL_ALPHA_TEST )
glEnable( GL_POINT_SMOOTH )
#glDisable( GL_DEPTH_TEST ) if self.antialias:
glEnable(GL_LINE_SMOOTH)
glHint(GL_LINE_SMOOTH_HINT, GL_NICEST);
glBegin( GL_LINES ) glBegin( GL_LINES )
x,y,z = self.size() x,y,z = self.size()
......
...@@ -11,9 +11,10 @@ class GLGridItem(GLGraphicsItem): ...@@ -11,9 +11,10 @@ class GLGridItem(GLGraphicsItem):
Displays a wire-grame grid. Displays a wire-grame grid.
""" """
def __init__(self, size=None, color=None, glOptions='translucent'): def __init__(self, size=None, color=None, antialias=True, glOptions='translucent'):
GLGraphicsItem.__init__(self) GLGraphicsItem.__init__(self)
self.setGLOptions(glOptions) self.setGLOptions(glOptions)
self.antialias = antialias
if size is None: if size is None:
size = QtGui.QVector3D(1,1,1) size = QtGui.QVector3D(1,1,1)
self.setSize(size=size) self.setSize(size=size)
...@@ -36,11 +37,13 @@ class GLGridItem(GLGraphicsItem): ...@@ -36,11 +37,13 @@ class GLGridItem(GLGraphicsItem):
def paint(self): def paint(self):
self.setupGLState() self.setupGLState()
#glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA)
#glEnable( GL_BLEND ) if self.antialias:
#glEnable( GL_ALPHA_TEST ) glEnable(GL_LINE_SMOOTH)
glEnable( GL_POINT_SMOOTH ) glEnable(GL_BLEND)
#glDisable( GL_DEPTH_TEST ) glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA)
glHint(GL_LINE_SMOOTH_HINT, GL_NICEST);
glBegin( GL_LINES ) glBegin( GL_LINES )
x,y,z = self.size() x,y,z = self.size()
......
...@@ -32,13 +32,14 @@ class GLLinePlotItem(GLGraphicsItem): ...@@ -32,13 +32,14 @@ class GLLinePlotItem(GLGraphicsItem):
color tuple of floats (0.0-1.0) specifying color tuple of floats (0.0-1.0) specifying
a color for the entire item. a color for the entire item.
width float specifying line width width float specifying line width
antialias enables smooth line drawing
==================== ================================================== ==================== ==================================================
""" """
args = ['pos', 'color', 'width', 'connected'] args = ['pos', 'color', 'width', 'connected', 'antialias']
for k in kwds.keys(): for k in kwds.keys():
if k not in args: if k not in args:
raise Exception('Invalid keyword argument: %s (allowed arguments are %s)' % (k, str(args))) raise Exception('Invalid keyword argument: %s (allowed arguments are %s)' % (k, str(args)))
self.antialias = False
for arg in args: for arg in args:
if arg in kwds: if arg in kwds:
setattr(self, arg, kwds[arg]) setattr(self, arg, kwds[arg])
...@@ -72,8 +73,15 @@ class GLLinePlotItem(GLGraphicsItem): ...@@ -72,8 +73,15 @@ class GLLinePlotItem(GLGraphicsItem):
try: try:
glVertexPointerf(self.pos) glVertexPointerf(self.pos)
glColor4f(*self.color) glColor4f(*self.color)
glLineWidth(self.width)
#glPointSize(self.width)
glPointSize(self.width) 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);
glDrawArrays(GL_LINE_STRIP, 0, self.pos.size / self.pos.shape[-1]) glDrawArrays(GL_LINE_STRIP, 0, self.pos.size / self.pos.shape[-1])
finally: finally:
glDisableClientState(GL_VERTEX_ARRAY) glDisableClientState(GL_VERTEX_ARRAY)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment