Mercurial > parpg-source
comparison bGrease/renderer/__init__.py @ 41:ff3e395abf91
Renamed grease to bGrease (Basic Grease) to get rid of conflicts with an already installed grease.
author | KarstenBock@gmx.net |
---|---|
date | Mon, 05 Sep 2011 15:00:34 +0200 |
parents | grease/renderer/__init__.py@bc88f7d5ca8b |
children | e856b604b650 |
comparison
equal
deleted
inserted
replaced
40:2e3ab06a2f47 | 41:ff3e395abf91 |
---|---|
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 bGrease.renderer.vector import Vector | |
25 from bGrease.renderer.camera import Camera |