Index: trunk/archive/pslib/include/psFunctions.h
===================================================================
--- trunk/archive/pslib/include/psFunctions.h	(revision 149)
+++ trunk/archive/pslib/include/psFunctions.h	(revision 153)
@@ -6,25 +6,24 @@
 /* Standard Functions */
 
-/* Gaussian */
-/* Note that this is not a Gaussian deviate */
+/** Gaussian.  Note that this is not a Gaussian deviate */
 float
-psGaussian(float x,			// Value at which to evaluate
-	   float mean,			// Mean for the Gaussian
-	   float stddev			// Standard deviation for the Gaussian
+psGaussian(float x,			//!< Value at which to evaluate
+	   float mean,			//!< Mean for the Gaussian
+	   float stddev			//!< Standard deviation for the Gaussian
 	   );
 
-/* Polynomial: one dimension */
+/** Polynomial: one dimension */
 float
-psPolynomial1d(float x,			// Value at which to evaluate
-	       const psFloatArray *restrict coeffs // Coefficients for the polynomial
+psPolynomial1d(float x,			//!< Value at which to evaluate
+	       const psFloatArray *restrict coeffs //!< Coefficients for the polynomial
 	       );
 
-/* Polynomial: two dimensions */
+/** Polynomial: two dimensions */
 float
-psPolynomial2d(float x,			// Value x at which to evaluate
-	       float y,			// Value y at which to evaluate
-	       int orderx,		// Polynomial order in x
-	       int ordery,		// Polynomial order in y
-	       const psFloatArray *coeffs // Coefficients for the polynomial
+psPolynomial2d(float x,			//!< Value x at which to evaluate
+	       float y,			//!< Value y at which to evaluate
+	       int orderx,		//!< Polynomial order in x
+	       int ordery,		//!< Polynomial order in y
+	       const psFloatArray *coeffs //!< Coefficients for the polynomial
 	       );
 
