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-11 13:39:56 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-03-11 13:39:56 +0300
commit8b2072868d5057bf9a3da52b8d27d13b11c8ae18 (patch)
tree5937c0d55d6ba9c41b5c2bc1f70de21535607717 /source/blender/blenkernel/intern/fluid.c
parent796683db8edb98adf2165fed458d08454cb7c977 (diff)
Cleanup: spelling
Diffstat (limited to 'source/blender/blenkernel/intern/fluid.c')
-rw-r--r--source/blender/blenkernel/intern/fluid.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/blenkernel/intern/fluid.c b/source/blender/blenkernel/intern/fluid.c
index 03c9cc7d151..9919a0d7385 100644
--- a/source/blender/blenkernel/intern/fluid.c
+++ b/source/blender/blenkernel/intern/fluid.c
@@ -2741,7 +2741,7 @@ static void update_flowsfluids(struct Depsgraph *depsgraph,
}
/* Optimization: Static liquid flow objects don't need emission computation after first
* frame.
- * TODO (sebbas): Also do not use static mode if inital velocities are enabled. */
+ * TODO (sebbas): Also do not use static mode if initial velocities are enabled. */
if (mfs->type == FLUID_FLOW_TYPE_LIQUID && is_static && !is_first_frame && !use_velocity) {
continue;
}
@@ -2961,7 +2961,7 @@ static void update_flowsfluids(struct Depsgraph *depsgraph,
if (is_liquid && !is_first_frame) {
/* Skip static liquid objects that are not on the first frame.
- * TODO (sebbas): Also do not use static mode if inital velocities are enabled. */
+ * TODO (sebbas): Also do not use static mode if initial velocities are enabled. */
if (is_static && !use_velocity) {
continue;
}
@@ -3222,7 +3222,7 @@ static Mesh *create_liquid_geometry(FluidDomainSettings *mds, Mesh *orgmesh, Obj
float cell_size_scaled[3];
/* Assign material + flags to new mesh.
- * If there are no faces in original mesj, keep materials and flags unchanged. */
+ * If there are no faces in original mesh, keep materials and flags unchanged. */
MPoly *mpoly;
MPoly mp_example = {0};
mpoly = orgmesh->mpoly;