changeset 1885:63604aa11164

*** empty log message ***
author baghdadi <baghdadi>
date Wed, 27 Oct 2004 17:08:35 +0000
parents 3bb11fc01e67
children f24d7e5d2b85
files libsrc2/doc/minc_20.tex
diffstat 1 files changed, 8 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/libsrc2/doc/minc_20.tex
+++ b/libsrc2/doc/minc_20.tex
@@ -113,6 +113,9 @@
 MON AUG 30/2004 Leila\\*
 * Added Attribute functions
 
+WED OCT 27/2004 Leila\\*
+* Correct the order of parameters in range functions
+
 \section{Introduction}
 
 
@@ -823,7 +826,7 @@
     mihandle_t volume;
 
     result = miget_vol_dimensions (volume, MI_DIMCLASS_SPATIAL, 
-                                   MI_DIMATTR_ALL, MI_ORDER_FILE, 
+                                   MI_DIMATTR_ALL, MI_DIMORDER_FILE, 
                                    3, dimensions);
 
 
@@ -2248,8 +2251,8 @@
 int miget_slice_range ( mihandle_t      volume,
                         unsigned long   start_positions[],
                         unsigned long   array_length,
-                        double          *slice_min,
-                        double          *slice_max)
+                        double          *slice_max,
+                        double          *slice_min)
                        
                                 
 DESCRIPTION
@@ -2277,8 +2280,8 @@
 int miset_slice_range ( mihandle_t      volume,
                         unsigned long   start_positions[],
                         unsigned long   array_length,
-                        const double    slice_min,
-                        const double    slice_max)
+                        const double    slice_max,
+                        const double    slice_min)
                        
                                 
 DESCRIPTION