Changeset 667 for cpp/frams/genetics/fF/fF_chamber3d.cpp
- Timestamp:
- 06/07/17 12:01:16 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/genetics/fF/fF_chamber3d.cpp
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 … … 7 7 #include <iostream> 8 8 9 fF_chamber3d::fF_chamber3d( float centerX, float centerY, floatcenterZ,10 float radius, float holeX, float holeY, floatholeZ,11 float vectorTfX, float vectorTfY, float vectorTfZ, float beta, floatphi)9 fF_chamber3d::fF_chamber3d(double centerX, double centerY, double centerZ, 10 double radius_x, double radius_y, double radius_z, double holeX, double holeY, double holeZ, 11 double vectorTfX, double vectorTfY, double vectorTfZ, double beta, double phi) 12 12 { 13 13 points = NULL; … … 15 15 this->centerY = centerY; 16 16 this->centerZ = centerZ; 17 this->radius = radius; 17 this->radius_x = radius_x; 18 this->radius_y = radius_y; 19 this->radius_z = radius_z; 18 20 this->holeX = holeX; 19 21 this->holeY = holeY;
Note: See TracChangeset
for help on using the changeset viewer.