5
|
1 #############################################################################
|
|
2 #
|
|
3 # Copyright (c) 2010 by Casey Duncan and contributors
|
|
4 # All Rights Reserved.
|
|
5 #
|
|
6 # This software is subject to the provisions of the MIT License
|
|
7 # A copy of the license should accompany this distribution.
|
|
8 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
9 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
10 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
11 #
|
|
12 #############################################################################
|
|
13 """Renderers define world presentation. This module contains the
|
|
14 built-in renderer classes.
|
|
15
|
|
16 See also:
|
|
17
|
|
18 - :class:`~grease.Renderer` abstract base class.
|
|
19 - :ref:`Example renderer class in the tutorial <tut-renderer-example>`
|
|
20 """
|
|
21
|
|
22 __all__ = ('Vector', 'Camera')
|
|
23
|
|
24 from grease.renderer.vector import Vector
|
|
25 from grease.renderer.camera import Camera
|