Last change
on this file since 1257 was
779,
checked in by Maciej Komosinski, 7 years ago
|
Unified file names of all files involved in genetic conversions and operations so that they start with "f<format>_"
|
-
Property svn:eol-style set to
native
|
File size:
917 bytes
|
Rev | Line | |
---|
[286] | 1 | // This file is a part of Framsticks SDK. http://www.framsticks.com/ |
---|
[667] | 2 | // Copyright (C) 1999-2017 Maciej Komosinski and Szymon Ulatowski. |
---|
[286] | 3 | // See LICENSE.txt for details. |
---|
[187] | 4 | |
---|
| 5 | #include "fF_chamber3d.h" |
---|
[779] | 6 | #include "fF_conv.h" |
---|
[187] | 7 | #include <iostream> |
---|
| 8 | |
---|
[667] | 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) |
---|
[187] | 12 | { |
---|
| 13 | points = NULL; |
---|
| 14 | this->centerX = centerX; |
---|
| 15 | this->centerY = centerY; |
---|
| 16 | this->centerZ = centerZ; |
---|
[667] | 17 | this->radius_x = radius_x; |
---|
| 18 | this->radius_y = radius_y; |
---|
| 19 | this->radius_z = radius_z; |
---|
[187] | 20 | this->holeX = holeX; |
---|
| 21 | this->holeY = holeY; |
---|
| 22 | this->holeZ = holeZ; |
---|
| 23 | this->vectorTfX = vectorTfX; |
---|
| 24 | this->vectorTfY = vectorTfY; |
---|
| 25 | this->vectorTfZ = vectorTfZ; |
---|
| 26 | this->beta = beta; |
---|
| 27 | this->phi = phi; |
---|
| 28 | } |
---|
| 29 | |
---|
| 30 | fF_chamber3d::~fF_chamber3d() |
---|
| 31 | { |
---|
| 32 | delete[] points; |
---|
| 33 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.