1 |
gross |
792 |
""" |
2 |
|
|
classes dealing with color maps |
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 |
|
|
|
12 |
|
|
__copyright__=""" Copyright (c) 2006 by ACcESS MNRF |
13 |
|
|
http://www.access.edu.au |
14 |
|
|
Primary Business: Queensland, Australia""" |
15 |
|
|
__license__="""Licensed under the Open Software License version 3.0 |
16 |
|
|
http://www.opensource.org/licenses/osl-3.0.php""" |
17 |
|
|
__author__="Paul Cochrane" |
18 |
|
|
__url__="http://www.iservo.edu.au/esys" |
19 |
|
|
__version__="$Revision$" |
20 |
|
|
__date__="$Date$" |
21 |
|
|
|
22 |
jongui |
833 |
class ColorMap: |
23 |
gross |
792 |
""" |
24 |
|
|
defines a color map |
25 |
|
|
""" |
26 |
|
|
pass |
27 |
|
|
|
28 |
jongui |
833 |
class BlueRed: |
29 |
gross |
792 |
""" |
30 |
|
|
color map with spectrum from blue to red |
31 |
|
|
""" |
32 |
|
|
pass |
33 |
|
|
|
34 |
jongui |
833 |
class RedBlue: |
35 |
gross |
792 |
""" |
36 |
|
|
color map with spectrum from red to blue |
37 |
|
|
""" |
38 |
|
|
pass |