// This file is a part of the Framsticks GDK. // Copyright (C) 2002-2014 Maciej Komosinski and Szymon Ulatowski. See LICENSE.txt for details. // Refer to http://www.framsticks.com/ for further information. #ifndef CHAMBER3D_H #define CHAMBER3D_H //Chamber parameters; see http://www.framsticks.com/foraminifera class fF_chamber3d { public: float centerX; float centerY; float centerZ; float radius; float holeX; float holeY; float holeZ; float vectorTfX; float vectorTfY; float vectorTfZ; float beta; float phi; double **points; ~fF_chamber3d(); fF_chamber3d(float centerX, float centerY, float centerZ, float radius, float holeX, float holeY, float holeZ, float vectorTfX, float vectorTfY, float vectorTfZ, float beta, float phi); }; #endif /* CHAMBER3D_H */