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>2013-10-31 18:10:01 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-10-31 18:10:01 +0400
commitbeae4f498da5a730889e9deb17455263a6e2f054 (patch)
tree7125bce543db017bfdc0c020f21aa7d1a303ace2 /source/blender/blenkernel/intern/particle_system.c
parent50d1129a57cb1eab3f87ffa1149d4b0ad76a012f (diff)
code cleanup: spelling
Diffstat (limited to 'source/blender/blenkernel/intern/particle_system.c')
-rw-r--r--source/blender/blenkernel/intern/particle_system.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenkernel/intern/particle_system.c b/source/blender/blenkernel/intern/particle_system.c
index ac32f96d59c..41217110cd8 100644
--- a/source/blender/blenkernel/intern/particle_system.c
+++ b/source/blender/blenkernel/intern/particle_system.c
@@ -2850,10 +2850,10 @@ static void sphclassical_force_cb(void *sphdata_v, ParticleKey *state, float *fo
continue;
}
- /* Find vector to neighbour. Exclude particles that are more than 2h
+ /* Find vector to neighbor. Exclude particles that are more than 2h
* away. Can't use current state here because it may have changed on
* another thread - so do own mini integration. Unlike basic_integrate,
- * SPH integration depends on neighbouring particles. - z0r */
+ * SPH integration depends on neighboring particles. - z0r */
madd_v3_v3v3fl(co, npa->prev_state.co, npa->prev_state.vel, state->time);
sub_v3_v3v3(vec, co, state->co);
rij = normalize_v3(vec);