Last change
on this file since 187 was
187,
checked in by sz, 11 years ago
|
all text files should have svn:eol-style=native
|
-
Property svn:eol-style set to
native
|
File size:
804 bytes
|
Line | |
---|
1 | // This file is a part of the Framsticks GDK. |
---|
2 | // Copyright (C) 2002-2014 Maciej Komosinski and Szymon Ulatowski. See LICENSE.txt for details. |
---|
3 | // Refer to http://www.framsticks.com/ for further information. |
---|
4 | |
---|
5 | #ifndef CHAMBER3D_H |
---|
6 | #define CHAMBER3D_H |
---|
7 | |
---|
8 | struct fF_point; |
---|
9 | |
---|
10 | //Chamber parameters; see http://www.framsticks.com/foraminifera |
---|
11 | class fF_chamber3d |
---|
12 | { |
---|
13 | public: |
---|
14 | float centerX; |
---|
15 | float centerY; |
---|
16 | float centerZ; |
---|
17 | float radius; |
---|
18 | float holeX; |
---|
19 | float holeY; |
---|
20 | float holeZ; |
---|
21 | float vectorTfX; |
---|
22 | float vectorTfY; |
---|
23 | float vectorTfZ; |
---|
24 | float beta; |
---|
25 | float phi; |
---|
26 | fF_point *points; |
---|
27 | |
---|
28 | fF_chamber3d(float centerX, float centerY, float centerZ, |
---|
29 | float radius, float holeX, float holeY, float holeZ, |
---|
30 | float vectorTfX, float vectorTfY, float vectorTfZ, float beta, float phi); |
---|
31 | ~fF_chamber3d(); |
---|
32 | }; |
---|
33 | |
---|
34 | #endif /* CHAMBER3D_H */ |
---|
Note: See
TracBrowser
for help on using the repository browser.