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>2020-03-14 07:34:24 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-03-14 07:43:21 +0300
commitf0b0524c5fa7d4b8cc857000d8fdfba5170a980f (patch)
tree28ef3b49abdabd6a7f49b9ae8c5a67dfa1ce2f61 /source/blender/blenkernel/intern/multires_reshape_util.c
parent117ccb56ad7a7047b335de9bb5d6ea6e0acf3133 (diff)
Cleanup: spelling
Diffstat (limited to 'source/blender/blenkernel/intern/multires_reshape_util.c')
-rw-r--r--source/blender/blenkernel/intern/multires_reshape_util.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/blender/blenkernel/intern/multires_reshape_util.c b/source/blender/blenkernel/intern/multires_reshape_util.c
index 814501996c8..f9271e37672 100644
--- a/source/blender/blenkernel/intern/multires_reshape_util.c
+++ b/source/blender/blenkernel/intern/multires_reshape_util.c
@@ -379,8 +379,7 @@ void multires_reshape_tangent_matrix_for_corner(const MultiresReshapeContext *re
float r_tangent_matrix[3][3])
{
/* For a quad faces we would need to flip the tangent, since they will use
- * use different coordinates within displacement grid comparent to ptex
- * face. */
+ * use different coordinates within displacement grid compared to the ptex face. */
const bool is_quad = multires_reshape_is_quad_face(reshape_context, face_index);
const int tangent_corner = is_quad ? corner : 0;
BKE_multires_construct_tangent_matrix(r_tangent_matrix, dPdu, dPdv, tangent_corner);