1 |
""" |
2 |
Classes defining geometrical items in visualization |
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, L. Gross" |
18 |
__url__="http://www.iservo.edu.au/esys" |
19 |
__version__="$Revision:$" |
20 |
__date__="$Date:$" |
21 |
|
22 |
|
23 |
def Position(object): |
24 |
""" |
25 |
A position in global coordinates |
26 |
""" |
27 |
pass |
28 |
|
29 |
def Origin(Position): |
30 |
""" |
31 |
The position of the origin |
32 |
""" |
33 |
pass |
34 |
|
35 |
def Direction(object): |
36 |
""" |
37 |
A dirction in global coordinates |
38 |
""" |
39 |
pass |
40 |
|
41 |
def XAxis(Direction): |
42 |
""" |
43 |
The direction of the x-axis |
44 |
""" |
45 |
pass |
46 |
|
47 |
def YAxis(Direction): |
48 |
""" |
49 |
The direction of the y-axis |
50 |
""" |
51 |
pass |
52 |
|
53 |
def ZAxis(Direction): |
54 |
""" |
55 |
The direction of the z-axis |
56 |
""" |
57 |
pass |
58 |
|
59 |
def Plane(object): |
60 |
""" |
61 |
A plane in global coordinates |
62 |
""" |
63 |
pass |
64 |
|
65 |
def XYPlane(Plane): |
66 |
""" |
67 |
The XY plane orthogonal to the z-axis |
68 |
""" |
69 |
pass |
70 |
|
71 |
def YZPlane(Plane): |
72 |
""" |
73 |
The YZ plane orthogonal to the x-axis |
74 |
""" |
75 |
pass |
76 |
|
77 |
def ZXPlane(Plane): |
78 |
""" |
79 |
The ZX plane orthogonal to the y-axis |
80 |
""" |
81 |
pass |
82 |
|
83 |
def Sphere(object): |
84 |
""" |
85 |
A sphere |
86 |
""" |
87 |
pass |
88 |
|