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-02-09 23:57:52 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-02-10 01:38:24 +0300
commit7b84a5a370a59eabfe798d8209889a2c05645854 (patch)
tree2a4d586d79f6f4fa6bdb90bea370e6db41a91009 /source/blender/blenkernel/BKE_attribute_math.hh
parent201865b6f7e5a55fbbdc6d524f2001f1a13bea8b (diff)
Cleanup: spelling
Diffstat (limited to 'source/blender/blenkernel/BKE_attribute_math.hh')
-rw-r--r--source/blender/blenkernel/BKE_attribute_math.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenkernel/BKE_attribute_math.hh b/source/blender/blenkernel/BKE_attribute_math.hh
index 606811ca12d..0294a8c09d5 100644
--- a/source/blender/blenkernel/BKE_attribute_math.hh
+++ b/source/blender/blenkernel/BKE_attribute_math.hh
@@ -242,8 +242,8 @@ template<> struct DefaultMixerStruct<bool> {
{
return value >= 0.5f;
}
- /* Store interpolated bools in a float temporary. Otherwise information provided by weights is
- * easily rounded away. */
+ /* Store interpolated booleans in a float temporary.
+ * Otherwise information provided by weights is easily rounded away. */
using type = SimpleMixerWithAccumulationType<bool, float, float_to_bool>;
};