Last change
on this file since 1257 was
779,
checked in by Maciej Komosinski, 7 years ago
|
Unified file names of all files involved in genetic conversions and operations so that they start with "f<format>_"
|
-
Property svn:eol-style set to
native
|
File size:
875 bytes
|
Rev | Line | |
---|
[286] | 1 | // This file is a part of Framsticks SDK. http://www.framsticks.com/ |
---|
[667] | 2 | // Copyright (C) 1999-2017 Maciej Komosinski and Szymon Ulatowski. |
---|
[286] | 3 | // See LICENSE.txt for details. |
---|
[187] | 4 | |
---|
[779] | 5 | #ifndef _FF_CHAMBER3D_H_ |
---|
| 6 | #define _FF_CHAMBER3D_H_ |
---|
[187] | 7 | |
---|
| 8 | struct fF_point; |
---|
| 9 | |
---|
| 10 | //Chamber parameters; see http://www.framsticks.com/foraminifera |
---|
| 11 | class fF_chamber3d |
---|
| 12 | { |
---|
| 13 | public: |
---|
[667] | 14 | double centerX; |
---|
| 15 | double centerY; |
---|
| 16 | double centerZ; |
---|
| 17 | double radius_x; |
---|
| 18 | double radius_y; |
---|
| 19 | double radius_z; |
---|
| 20 | double holeX; |
---|
| 21 | double holeY; |
---|
| 22 | double holeZ; |
---|
| 23 | double vectorTfX; |
---|
| 24 | double vectorTfY; |
---|
| 25 | double vectorTfZ; |
---|
| 26 | double beta; |
---|
| 27 | double phi; |
---|
| 28 | |
---|
[187] | 29 | fF_point *points; |
---|
| 30 | |
---|
[667] | 31 | fF_chamber3d(double centerX, double centerY, double centerZ, |
---|
| 32 | double radius_x, double radius_y, double radius_z, double holeX, double holeY, double holeZ, |
---|
| 33 | double vectorTfX, double vectorTfY, double vectorTfZ, double beta, double phi); |
---|
[187] | 34 | ~fF_chamber3d(); |
---|
| 35 | }; |
---|
| 36 | |
---|
| 37 | #endif /* CHAMBER3D_H */ |
---|
Note: See
TracBrowser
for help on using the repository browser.