source:
GTP/trunk/Lib/Vis/Preprocessing/include/Plane3.h
@
68
Revision 68, 208 bytes checked in by bittner, 20 years ago (diff) | |
---|---|
|
Line | |
---|---|
1 | #ifndef _Plane3_H__ |
2 | #define _Plane3_H__ |
3 | |
4 | #include "vector3.h" |
5 | |
6 | namespace GtpVisibilityPreprocessor { |
7 | |
8 | /** 3D Plane */ |
9 | class Plane3 { |
10 | public: |
11 | Vector3 mNormal; |
12 | float mD; |
13 | }; |
14 | |
15 | |
16 | }; |
17 | |
18 | |
19 | |
20 | #endif |
Note: See TracBrowser
for help on using the repository browser.