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

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

Renamed #defines that conflicted with system-wide defines for Windows (added fF_ prefix), updated ranges for scaling parameters, updated the simplest genotype, formatted sources

File size: 817 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
8//Chamber parameters; see http://www.framsticks.com/foraminifera
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#endif  /* CHAMBER3D_H */
Note: See TracBrowser for help on using the repository browser.