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-10-14 06:43:54 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-10-14 06:43:54 +0300
commitdeca7c795411975e3bfb11cd6934ace768be772b (patch)
treeed90e9acb30ea57510edf3dd4228ff93074f0f9f /source/blender/modifiers/intern/MOD_volume_displace.cc
parent2cc7be3e4907a0f9ed508b278cae987b35b2f503 (diff)
Cleanup: spelling
Diffstat (limited to 'source/blender/modifiers/intern/MOD_volume_displace.cc')
-rw-r--r--source/blender/modifiers/intern/MOD_volume_displace.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/modifiers/intern/MOD_volume_displace.cc b/source/blender/modifiers/intern/MOD_volume_displace.cc
index f26aa729f3b..18ecefda881 100644
--- a/source/blender/modifiers/intern/MOD_volume_displace.cc
+++ b/source/blender/modifiers/intern/MOD_volume_displace.cc
@@ -136,8 +136,8 @@ static void panelRegister(ARegionType *region_type)
static openvdb::Mat4s matrix_to_openvdb(const float m[4][4])
{
- /* Openvdb matrices are transposed Blender matrices, i.e. the translation is in the last row
- * instead of in the last column. However, the layout in memory is the same, because openvdb
+ /* OpenVDB matrices are transposed Blender matrices, i.e. the translation is in the last row
+ * instead of in the last column. However, the layout in memory is the same, because OpenVDB
* matrices are row major (compared to Blender's column major matrices). */
openvdb::Mat4s new_matrix{reinterpret_cast<const float *>(m)};
return new_matrix;