1 |
""" |
2 |
class that shows a mesh |
3 |
|
4 |
@var __author__: name of author |
5 |
@var __license__: licence agreement |
6 |
@var __copyright__: copyrights |
7 |
@var __url__: url entry point on documentation |
8 |
@var __version__: version |
9 |
@var __date__: date of the version |
10 |
""" |
11 |
__copyright__=""" Copyright (c) 2006 by ACcESS MNRF |
12 |
http://www.access.edu.au |
13 |
Primary Business: Queensland, Australia""" |
14 |
__license__="""Licensed under the Open Software License version 3.0 |
15 |
http://www.opensource.org/licenses/osl-3.0.php""" |
16 |
__author__="Paul Cochrane, L. Gross" |
17 |
__url__="http://www.iservo.edu.au/esys" |
18 |
__version__="$Revision:$" |
19 |
__date__="$Date:$" |
20 |
|
21 |
from common import Component |
22 |
|
23 |
class Wireframe(Component): |
24 |
""" |
25 |
shows a mesh |
26 |
""" |
27 |
pass |