Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2021-06-24 08:57:33 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-06-24 08:59:34 +0300
commit1f778dbefcaf825dcad1f70a9cc45e503ad74ed5 (patch)
treed192550ac77a0f982fb43440d3c64d972cc2d011 /source/blender/freestyle/intern/image/ImagePyramid.h
parent4b9ff3cd42be427e478743648e9951bf8c189a04 (diff)
Cleanup: use Blender's code style for doxygen commetns in freestyle
Diffstat (limited to 'source/blender/freestyle/intern/image/ImagePyramid.h')
-rw-r--r--source/blender/freestyle/intern/image/ImagePyramid.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/blender/freestyle/intern/image/ImagePyramid.h b/source/blender/freestyle/intern/image/ImagePyramid.h
index 3b4e5eda52a..66df1ec728a 100644
--- a/source/blender/freestyle/intern/image/ImagePyramid.h
+++ b/source/blender/freestyle/intern/image/ImagePyramid.h
@@ -45,17 +45,17 @@ class ImagePyramid {
// ImagePyramid(const GrayImage& level0, unsigned nbLevels);
virtual ~ImagePyramid();
- /*! Builds the pyramid.
+ /** Builds the pyramid.
* must be overloaded by inherited classes.
* if nbLevels==0, the complete pyramid is built
*/
virtual void BuildPyramid(const GrayImage &level0, unsigned nbLevels) = 0;
- /*! Builds a pyramid without copying the base level */
+ /** Builds a pyramid without copying the base level */
virtual void BuildPyramid(GrayImage *level0, unsigned nbLevels) = 0;
virtual GrayImage *getLevel(int l);
- /*! Returns the pixel x,y using bilinear interpolation.
+ /** Returns the pixel x,y using bilinear interpolation.
* \param x:
* the abscissa specified in the finest level coordinate system
* \param y:
@@ -65,13 +65,13 @@ class ImagePyramid {
*/
virtual float pixel(int x, int y, int level = 0);
- /*! Returns the width of the level-th level image */
+ /** Returns the width of the level-th level image */
virtual int width(int level = 0);
- /*! Returns the height of the level-th level image */
+ /** Returns the height of the level-th level image */
virtual int height(int level = 0);
- /*! Returns the number of levels in the pyramid */
+ /** Returns the number of levels in the pyramid */
inline int getNumberOfLevels() const
{
return _levels.size();