Mercurial > parpg-source
comparison grease/renderer/__init__.py @ 5:bc88f7d5ca8b
Added base files for grease
author | KarstenBock@gmx.net |
---|---|
date | Tue, 12 Jul 2011 10:16:48 +0200 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
4:bf1dd9c24a7e | 5:bc88f7d5ca8b |
---|---|
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 |