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-26 14:35:18 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-06-26 14:50:48 +0300
commitf1e49038543cf75766f4a220f62cdc6cdbc0e27d (patch)
tree0cec2c64739a6a4ca246fe26bed6fe629ea315cb /source/blender/freestyle/intern/view_map/Interface1D.h
parentfae5a907d4d1380f087f1226ebbd65d9d0718cc6 (diff)
Cleanup: full sentences in comments, improve comment formatting
Diffstat (limited to 'source/blender/freestyle/intern/view_map/Interface1D.h')
-rw-r--r--source/blender/freestyle/intern/view_map/Interface1D.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/freestyle/intern/view_map/Interface1D.h b/source/blender/freestyle/intern/view_map/Interface1D.h
index 8d1879af31b..75ad71a373d 100644
--- a/source/blender/freestyle/intern/view_map/Interface1D.h
+++ b/source/blender/freestyle/intern/view_map/Interface1D.h
@@ -46,15 +46,15 @@ namespace Freestyle {
*/
typedef enum {
MEAN, /**< The value computed for the 1D element is the mean of the values obtained for the 0D
- elements.*/
+ elements. */
MIN, /**< The value computed for the 1D element is the minimum of the values obtained for the 0D
- elements.*/
+ elements. */
MAX, /**< The value computed for the 1D element is the maximum of the values obtained for the 0D
- elements.*/
+ elements. */
FIRST, /**< The value computed for the 1D element is the first of the values obtained for the 0D
- elements.*/
+ elements. */
LAST, /**< The value computed for the 1D element is the last of the values obtained for the 0D
- elements.*/
+ elements. */
} IntegrationType;
/** Returns a single value from a set of values evaluated at each 0D element of this 1D element.