diff options
author | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2015-07-16 18:09:51 +0200 |
---|---|---|
committer | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2015-07-16 18:09:51 +0200 |
commit | 7584ffbd6748bcca8c3f7ed2dc961be01f2fcfdc (patch) | |
tree | 6c77d26f231008ebfd95a5b50f67ed78e0007d30 /cuda/3d | |
parent | 66968b3886b3800afcecf8f089962f87243cf4b1 (diff) | |
download | astra-7584ffbd6748bcca8c3f7ed2dc961be01f2fcfdc.tar.gz astra-7584ffbd6748bcca8c3f7ed2dc961be01f2fcfdc.tar.bz2 astra-7584ffbd6748bcca8c3f7ed2dc961be01f2fcfdc.tar.xz astra-7584ffbd6748bcca8c3f7ed2dc961be01f2fcfdc.zip |
Fix assert
Diffstat (limited to 'cuda/3d')
-rw-r--r-- | cuda/3d/astra3d.cu | 2 |
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(); |