aboutsummaryrefslogtreecommitdiff
path: root/operationscore/Renderer.py
diff options
context:
space:
mode:
Diffstat (limited to 'operationscore/Renderer.py')
-rw-r--r--operationscore/Renderer.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/operationscore/Renderer.py b/operationscore/Renderer.py
index b422304..0861c44 100644
--- a/operationscore/Renderer.py
+++ b/operationscore/Renderer.py
@@ -1,10 +1,10 @@
-#Renderer abstract class. Doesn't do much now, but might do more later.
-#Inheriting classes MUST define render which takes a light system and renders it.
-#Inheriting classes may define initRenderer which is called after the dictionary
-#is pulled from config.
#TODO: multithreaded-rendering
from operationscore.SmootCoreObject import *
class Renderer(SmootCoreObject):
+ """Renderer abstract class. Doesn't do much now, but might do more later.
+ Inheriting classes MUST define render which takes a light system and renders it.
+ Inheriting classes may define initRenderer which is called after the dictionary
+ is pulled from config."""
def init(self):
self.initRenderer()
def render(lightSystem):