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>2019-04-30 10:50:57 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-05-01 00:58:27 +0300
commit1e8697cd8094183a3f356bf8564284a31ffb89fc (patch)
tree554b1ac7856f3f168c58476ce53d1953beaa760e /source/blender/freestyle/intern/image/Image.h
parent5ca8ac51d04c6feb9d29d75fb2525168d30fbe74 (diff)
Cleanup: comments (long lines) in freestyle
Diffstat (limited to 'source/blender/freestyle/intern/image/Image.h')
-rw-r--r--source/blender/freestyle/intern/image/Image.h13
1 files changed, 8 insertions, 5 deletions
diff --git a/source/blender/freestyle/intern/image/Image.h b/source/blender/freestyle/intern/image/Image.h
index 344766bfa63..b854e411a83 100644
--- a/source/blender/freestyle/intern/image/Image.h
+++ b/source/blender/freestyle/intern/image/Image.h
@@ -35,9 +35,10 @@ namespace Freestyle {
//
///////////////////////////////////////////////////////////////////////////////
-/*! This class allows the storing of part of an image, while allowing a normal access to its pixel values.
- * You can for example only a rectangle of sw*sh, whose lower-left corner is at (ox, oy), of an image of
- * size w*h, and access these pixels using x,y coordinates specified in the whole image coordinate system.
+/*! This class allows the storing of part of an image, while allowing a normal access to its pixel
+ * values. You can for example only a rectangle of sw*sh, whose lower-left corner is at (ox, oy),
+ * of an image of size w*h, and access these pixels using x,y coordinates specified in the whole
+ * image coordinate system.
*/
class FrsImage {
public:
@@ -209,7 +210,8 @@ class RGBImage : public FrsImage {
/*! Builds an RGB partial image from the useful part buffer.
* \param rgb:
* The array of size 3*sw*sh containing the RGB values of the sw*sh pixels we need to stored.
- * These sw*sh pixels constitute a rectangular part of a bigger RGB image containing w*h pixels.
+ * These sw*sh pixels constitute a rectangular part of a bigger
+ * RGB image containing w*h pixels.
* \param w:
* The width of the complete image
* \param h:
@@ -346,7 +348,8 @@ class GrayImage : public FrsImage {
/*! Builds a partial image from the useful part buffer.
* \param lvl:
* The array of size sw*sh containing the gray values of the sw*sh pixels we need to stored.
- * These sw*sh pixels constitute a rectangular part of a bigger gray image containing w*h pixels.
+ * These sw*sh pixels constitute a rectangular part of a bigger
+ * gray image containing w*h pixels.
* \param w:
* The width of the complete image
* \param h: