diff options
author | Wim van Aarle <wimvanaarle@gmail.com> | 2015-03-13 10:22:22 +0100 |
---|---|---|
committer | Wim van Aarle <wimvanaarle@gmail.com> | 2015-03-13 10:22:22 +0100 |
commit | d53185395827980e101629c633653cb4284edb06 (patch) | |
tree | 21376b86145441c4e3bea2bc5afa9a3df0539b36 /include/astra | |
parent | e8765bcdab3be977cd5536531cacb24bf3378a59 (diff) | |
download | astra-d53185395827980e101629c633653cb4284edb06.tar.gz astra-d53185395827980e101629c633653cb4284edb06.tar.bz2 astra-d53185395827980e101629c633653cb4284edb06.tar.xz astra-d53185395827980e101629c633653cb4284edb06.zip |
removed extraDetectorOffset
Diffstat (limited to 'include/astra')
-rw-r--r-- | include/astra/ProjectionGeometry2D.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/include/astra/ProjectionGeometry2D.h b/include/astra/ProjectionGeometry2D.h index b8324e2..d26e6a7 100644 --- a/include/astra/ProjectionGeometry2D.h +++ b/include/astra/ProjectionGeometry2D.h @@ -65,10 +65,6 @@ protected: */ float32 m_fDetectorWidth; - /** An array of m_iProjectionAngleCount elements containing an extra detector offset for each projection. - */ - float32* m_pfExtraDetectorOffset; - /** Dynamically allocated array of projection angles. All angles are represented in radians and lie in * the [0,2pi[ interval. */ @@ -202,9 +198,6 @@ public: */ float32 getProjectionAngleDegrees(int _iProjectionIndex) const; - float32 getExtraDetectorOffset(int iAngle) const; - const float32* getExtraDetectorOffset() const { return m_pfExtraDetectorOffset; } - /** Get the index coordinate of a point on a detector array. * * @param _fOffset distance between the center of the detector array and a certain point @@ -273,12 +266,6 @@ public: //---------------------------------------------------------------------------------------- -inline float32 CProjectionGeometry2D::getExtraDetectorOffset(int _iAngle) const -{ - return m_pfExtraDetectorOffset ? m_pfExtraDetectorOffset[_iAngle] : 0.0f; -} - - // Get the initialization state. inline bool CProjectionGeometry2D::isInitialized() const { |