Last change
on this file since 275 was
197,
checked in by Maciej Komosinski, 11 years ago
|
GDK used by developers since 1999, distributed on the web since 2002
|
-
Property svn:eol-style set to
native
|
File size:
804 bytes
|
Rev | Line | |
---|
[187] | 1 | // This file is a part of the Framsticks GDK. |
---|
[197] | 2 | // Copyright (C) 1999-2014 Maciej Komosinski and Szymon Ulatowski. See LICENSE.txt for details. |
---|
[187] | 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.