1 |
ksteube |
1809 |
|
2 |
|
|
######################################################## |
3 |
|
|
# |
4 |
jfenwick |
2881 |
# Copyright (c) 2003-2010 by University of Queensland |
5 |
ksteube |
1809 |
# Earth Systems Science Computational Center (ESSCC) |
6 |
|
|
# http://www.uq.edu.au/esscc |
7 |
|
|
# |
8 |
|
|
# Primary Business: Queensland, Australia |
9 |
|
|
# Licensed under the Open Software License version 3.0 |
10 |
|
|
# http://www.opensource.org/licenses/osl-3.0.php |
11 |
|
|
# |
12 |
|
|
######################################################## |
13 |
|
|
|
14 |
jfenwick |
2881 |
__copyright__="""Copyright (c) 2003-2010 by University of Queensland |
15 |
ksteube |
1809 |
Earth Systems Science Computational Center (ESSCC) |
16 |
|
|
http://www.uq.edu.au/esscc |
17 |
|
|
Primary Business: Queensland, Australia""" |
18 |
|
|
__license__="""Licensed under the Open Software License version 3.0 |
19 |
|
|
http://www.opensource.org/licenses/osl-3.0.php""" |
20 |
jfenwick |
2344 |
__url__="https://launchpad.net/escript-finley" |
21 |
ksteube |
1809 |
|
22 |
jfenwick |
2542 |
__deprecated__="""The pyvisi module has been deprecated and is no longer supported. |
23 |
|
|
Please see the escript user guide and tutorials for suggestions |
24 |
|
|
on visualisation.""" |
25 |
jongui |
1197 |
""" |
26 |
jfenwick |
2625 |
:var __author__: name of author |
27 |
|
|
:var __copyright__: copyrights |
28 |
|
|
:var __license__: licence agreement |
29 |
|
|
:var __url__: url entry point on documentation |
30 |
|
|
:var __version__: version |
31 |
|
|
:var __date__: date of the version |
32 |
jongui |
1197 |
""" |
33 |
|
|
|
34 |
|
|
__author__="John Ngui, john.ngui@uq.edu.au" |
35 |
|
|
|
36 |
jfenwick |
2542 |
import warnings |
37 |
|
|
warnings.warn("pyvisi is deprecated. Please see the escript user guide and tutorials for visualisation suggestions.", DeprecationWarning, stacklevel=2) |
38 |
jongui |
1197 |
|
39 |
ksteube |
1147 |
from camera import * |
40 |
|
|
from carpet import * |
41 |
|
|
from contour import * |
42 |
|
|
from datacollector import * |
43 |
|
|
from ellipsoid import * |
44 |
|
|
from image import * |
45 |
|
|
from light import * |
46 |
|
|
from map import * |
47 |
|
|
from position import * |
48 |
|
|
from scene import * |
49 |
|
|
from streamline import * |
50 |
|
|
from text import * |
51 |
|
|
from velocity import * |
52 |
|
|
from imagereader import * |
53 |
|
|
from logo import * |
54 |
jongui |
1189 |
from legend import * |
55 |
jongui |
1191 |
from movie import * |
56 |
jongui |
1205 |
from rectangle import * |
57 |
jongui |
1211 |
from rotation import * |
58 |
jfenwick |
2542 |
|
59 |
|
|
|