Kano001's picture
Upload 3077 files
6a86ad5 verified
raw
history blame
330 Bytes
class PlotObject:
"""
Base class for objects which can be displayed in
a Plot.
"""
visible = True
def _draw(self):
if self.visible:
self.draw()
def draw(self):
"""
OpenGL rendering code for the plot object.
Override in base class.
"""
pass