Cleanup: use colon separator after parameter

Helps separate variable names from descriptive text.
Was already used in some parts of the code,
double space and dashes were used elsewhere.
This commit is contained in:
2018-12-12 12:50:58 +11:00
parent ba8d6ca3dd
commit e757c4a3be
190 changed files with 1173 additions and 1172 deletions

View File

@@ -62,11 +62,11 @@ public:
virtual GrayImage *getLevel(int l);
/*! Returns the pixel x,y using bilinear interpolation.
* \param x
* \param x:
* the abscissa specified in the finest level coordinate system
* \param y
* \param y:
* the ordinate specified in the finest level coordinate system
* \param level
* \param level:
* the level from which we want the pixel to be evaluated
*/
virtual float pixel(int x, int y, int level=0);