source: cpp/frams/genetics/fF/fF_chamber3d.h @ 181

Last change on this file since 181 was 181, checked in by Maciej Komosinski, 10 years ago

Cosmetic change in order

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
8struct fF_point;
9
10//Chamber parameters; see http://www.framsticks.com/foraminifera
11class fF_chamber3d
12{
13public:
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.