summaryrefslogtreecommitdiff
path: root/gr-wxgui/src/python/plotter/plotter_base.py
diff options
context:
space:
mode:
Diffstat (limited to 'gr-wxgui/src/python/plotter/plotter_base.py')
-rw-r--r--gr-wxgui/src/python/plotter/plotter_base.py12
1 files changed, 9 insertions, 3 deletions
diff --git a/gr-wxgui/src/python/plotter/plotter_base.py b/gr-wxgui/src/python/plotter/plotter_base.py
index 2fdd0f20ab..3ad1e81582 100644
--- a/gr-wxgui/src/python/plotter/plotter_base.py
+++ b/gr-wxgui/src/python/plotter/plotter_base.py
@@ -37,7 +37,9 @@ class gl_cache(object):
def __init__(self, draw):
"""
Create a new cache.
- @param draw a function to draw gl stuff
+
+ Args:
+ draw: a function to draw gl stuff
"""
self.changed(True)
self._draw = draw
@@ -84,7 +86,9 @@ class plotter_base(wx.glcanvas.GLCanvas, common.mutex):
Initialize the GLCanvas with double buffering.
Initialize various plotter flags.
Bind the paint and size events.
- @param parent the parent widgit
+
+ Args:
+ parent: the parent widgit
"""
attribList = (wx.glcanvas.WX_GL_DOUBLEBUFFER, wx.glcanvas.WX_GL_RGBA)
wx.glcanvas.GLCanvas.__init__(self, parent, attribList=attribList);
@@ -111,7 +115,9 @@ class plotter_base(wx.glcanvas.GLCanvas, common.mutex):
"""
Create a new gl cache.
Register its draw and init function.
- @return the new cache object
+
+ Returns:
+ the new cache object
"""
cache = gl_cache(draw_fcn)
self.register_init(cache.init)