Last change
on this file since 427 was
286,
checked in by Maciej Komosinski, 10 years ago
|
Updated headers
|
-
Property svn:eol-style set to
native
|
File size:
766 bytes
|
Rev | Line | |
---|
[286] | 1 | // This file is a part of Framsticks SDK. http://www.framsticks.com/ |
---|
| 2 | // Copyright (C) 1999-2015 Maciej Komosinski and Szymon Ulatowski. |
---|
| 3 | // See LICENSE.txt for details. |
---|
[187] | 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.