Last change
on this file since 178 was
178,
checked in by Maciej Komosinski, 11 years ago
|
Changed cryptic double[4] into a meaningful struct
|
File size:
838 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();
|
---|
29 | fF_chamber3d(float centerX, float centerY, float centerZ,
|
---|
30 | float radius, float holeX, float holeY, float holeZ,
|
---|
31 | float vectorTfX, float vectorTfY, float vectorTfZ, float beta, float phi);
|
---|
32 | };
|
---|
33 |
|
---|
34 | #endif /* CHAMBER3D_H */
|
---|
Note: See
TracBrowser
for help on using the repository browser.