summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWillem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl>2015-07-16 18:09:51 +0200
committerWillem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl>2015-07-16 18:09:51 +0200
commit7584ffbd6748bcca8c3f7ed2dc961be01f2fcfdc (patch)
tree6c77d26f231008ebfd95a5b50f67ed78e0007d30
parent66968b3886b3800afcecf8f089962f87243cf4b1 (diff)
downloadastra-7584ffbd6748bcca8c3f7ed2dc961be01f2fcfdc.tar.gz
astra-7584ffbd6748bcca8c3f7ed2dc961be01f2fcfdc.tar.bz2
astra-7584ffbd6748bcca8c3f7ed2dc961be01f2fcfdc.tar.xz
astra-7584ffbd6748bcca8c3f7ed2dc961be01f2fcfdc.zip
Fix assert
-rw-r--r--cuda/3d/astra3d.cu2
1 files changed, 1 insertions, 1 deletions
diff --git a/cuda/3d/astra3d.cu b/cuda/3d/astra3d.cu
index ae79efb..3815a1a 100644
--- a/cuda/3d/astra3d.cu
+++ b/cuda/3d/astra3d.cu
@@ -287,7 +287,7 @@ bool convertAstraGeometry(const CVolumeGeometry3D* pVolGeom,
{
assert(pVolGeom);
assert(pProjGeom);
- assert(pProjGeom->getProjectionAngles());
+ assert(pProjGeom->getProjectionVectors());
int nth = pProjGeom->getProjectionCount();