diff options
Diffstat (limited to 'python')
| -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: | 
