Index: /trunk/psLib/src/mathtypes/psImage.h
===================================================================
--- /trunk/psLib/src/mathtypes/psImage.h	(revision 7552)
+++ /trunk/psLib/src/mathtypes/psImage.h	(revision 7553)
@@ -11,6 +11,6 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.77 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-06-13 20:01:27 $
+ *  @version $Revision: 1.78 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2006-06-14 01:29:16 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -109,69 +109,4 @@
 );
 
-
-// XXX these have been moved to psRegion* in src/math
-# if 0
-/** Create a psRegion with the specified attributes.
- *
- *  @return psRegion : a cooresponding psRegion.
- */
-psRegion psRegionSet(
-    float x0,                          ///< the first column of the region.
-    float x1,                          ///< the last column of the region + 1.
-    float y0,                          ///< the first row of the region.
-    float y1                           ///< the last row of the region + 1.
-);
-
-/** Create a psRegion with the attribute values given as a string.
- *
- *  Create a psRegion with the attribute values given as a string.  The format
- *  shall be of the standard IRAF form '[x0:x1,y0:y1]'
- *
- *  @return psRegion:  A new psRegion struct, or NULL is not successful.
- */
-psRegion psRegionFromString(
-    const char* region                 ///< image rectangular region in the form '[x0:x1,y0:y1]'
-);
-
-/** Create a string of the standard IRAF form '[x0:x1,y0:y1]' from a psRegion.
- *
- *  @return psString:  A new string representing the psRegion as text, or NULL
- *                  is not successful.
- */
-psString psRegionToString(
-    const psRegion region              ///< the psRegion to convert to a string
-);
-
-/** Sets an actual region based on image parameters.
- *
- *  An image region defined with negative upper limits may be rationalized for the bounds of a
- *  specific image with psRegionForImage.  The output of this function is a region with negative
- *  upper limits replaced by their corrected value appropriate to the given image.  In addition,
- *  the lower and upper limits are foced to lie within the bounds of the image.  If the lower-
- *  limit coordinates are lewss than the lower bound of the image, they are limited to the lower
- *  bound of the image.  Conversely, if the upper-limit coordinates are greater than the upper
- *  bound of the image, they are truncated to define only valid pixels.  If the lower-limit
- *  coordinates are greater than the upper bounds of the image, or the upper-limit coordinates
- *  are less than the lower bounds of the image, the coordinates should saturate on those limits.
- *
- *  @return psRegion:       A region with negative upper limits replaced by the corrected
- */
-psRegion psRegionForImage(
-    psImage *image,                    ///< the image for which the region is to be set
-    psRegion in                        ///< the image region limits
-);
-
-/** Defines a region corresponding to the square with center at coordinate x,y
- *  and with coderadius.  The width of the square is 2radius + 1.
- *
- *  @return psRegion:       the newly defined psRegion.
- */
-psRegion psRegionForSquare(
-    double x,                           ///< x coordinate at square-center
-    double y,                           ///< y coordinate at square-center
-    double radius                       ///< radius of square
-);
-# endif /* commented-out psRegions */
-
 /** Initializes the image with the given value.
  *
