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

Last change on this file since 174 was 174, checked in by oriona, 9 years ago

Chambers in Foraminifera grow so that the length of the local communication path is minimal

File size: 755 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#ifndef CHAMBER3D_H
5#define CHAMBER3D_H
6
7//chamber parameters
8
9class fF_chamber3d
10{
11public:
12        float centerX;
13        float centerY;
14        float centerZ;
15        float radius;
16        float holeX;
17        float holeY;
18        float holeZ;
19        float vectorTfX;
20        float vectorTfY;
21        float vectorTfZ;
22        float beta;
23        float phi;
24        double **points;
25
26        ~fF_chamber3d();
27        fF_chamber3d(float centerX, float centerY, float centerZ,
28        float radius, float holeX, float holeY, float holeZ,
29        float vectorTfX, float vectorTfY, float vectorTfZ, float beta, float phi);
30
31};
32
33
34#endif  /* CHAMBER3D_H */
Note: See TracBrowser for help on using the repository browser.