Index: trunk/psLib/src/collections/psPixels.h
===================================================================
--- trunk/psLib/src/collections/psPixels.h	(revision 4162)
+++ trunk/psLib/src/collections/psPixels.h	(revision 4214)
@@ -7,6 +7,6 @@
  *  @author Robert DeSonia, MHPCC
  *
- *  @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-06-08 23:40:45 $
+ *  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-06-11 02:19:05 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -62,4 +62,15 @@
     psPixels* pixels,                  ///< psPixels to resize, or NULL to create new psPixels
     int size                           ///< the size of the coordinate vectors
+);
+
+/** Add a pixel location to a psPixels
+ *
+ *  @return psPixels*       psPixels with the value appended.
+ */
+psPixels* p_psPixelsAppend(
+    psPixels* pixels,                  ///< psPixels to append new coordinate to.  NULL creates a new one.
+    int growth,                        ///< number of elements to grow the psPixels list, if necessary.  if growth < 1, 10 is used.
+    psS32 x,                           ///< x coordinate to append
+    psS32 y                            ///< y coordinate to append
 );
 
