Changeset 667 for cpp/frams/genetics/fF/fF_chamber3d.h
- Timestamp:
- 06/07/17 12:01:16 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/genetics/fF/fF_chamber3d.h
r286 r667 1 1 // This file is a part of Framsticks SDK. http://www.framsticks.com/ 2 // Copyright (C) 1999-201 5Maciej Komosinski and Szymon Ulatowski.2 // Copyright (C) 1999-2017 Maciej Komosinski and Szymon Ulatowski. 3 3 // See LICENSE.txt for details. 4 4 … … 12 12 { 13 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; 14 double centerX; 15 double centerY; 16 double centerZ; 17 double radius_x; 18 double radius_y; 19 double radius_z; 20 double holeX; 21 double holeY; 22 double holeZ; 23 double vectorTfX; 24 double vectorTfY; 25 double vectorTfZ; 26 double beta; 27 double phi; 28 26 29 fF_point *points; 27 30 28 fF_chamber3d( float centerX, float centerY, floatcenterZ,29 float radius, float holeX, float holeY, floatholeZ,30 float vectorTfX, float vectorTfY, float vectorTfZ, float beta, floatphi);31 fF_chamber3d(double centerX, double centerY, double centerZ, 32 double radius_x, double radius_y, double radius_z, double holeX, double holeY, double holeZ, 33 double vectorTfX, double vectorTfY, double vectorTfZ, double beta, double phi); 31 34 ~fF_chamber3d(); 32 35 };
Note: See TracChangeset
for help on using the changeset viewer.