diff options
| author | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2016-10-06 12:30:18 +0200 |
|---|---|---|
| committer | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2016-10-06 12:30:18 +0200 |
| commit | 0cec258c5079cc065fa75f82ae8d785986ebdf18 (patch) | |
| tree | e7ca39da75ad5c9d728698295ac9c8ec32e4e499 /python/astra/data3d_c.pyx | |
| parent | c2cdbc312196481edd202baa3bd668396e78534c (diff) | |
| parent | 7bb42ddd9e26fc7c01734d26bc114b5a935d9110 (diff) | |
Merge branch 'master' into FDK
Diffstat (limited to 'python/astra/data3d_c.pyx')
| -rw-r--r-- | python/astra/data3d_c.pyx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/astra/data3d_c.pyx b/python/astra/data3d_c.pyx index 207d9a5..811d1e4 100644 --- a/python/astra/data3d_c.pyx +++ b/python/astra/data3d_c.pyx @@ -264,7 +264,7 @@ def store(i,data): def dimensions(i): cdef CFloat32Data3D * pDataObject = getObject(i) - return (pDataObject.getWidth(),pDataObject.getHeight(),pDataObject.getDepth()) + return (pDataObject.getDepth(),pDataObject.getHeight(),pDataObject.getWidth()) def delete(ids): try: |
