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:
authorThomas Dinges <blender@dingto.org>2013-04-07 19:09:06 +0400
committerThomas Dinges <blender@dingto.org>2013-04-07 19:09:06 +0400
commit858ff6b69626bf8385debe06436b2f2abba56f45 (patch)
treef32c8f31043e57a0f64afd80d98ba06fbd8c51cc /source/blender/blenkernel/intern/mball.c
parentc0ab8a15c344afdc513513444f0969766ea50db9 (diff)
Fix for [#34898] Typo in error message of mathutils.Vector
* Also fixed some more cases of "more then" -> "more than".
Diffstat (limited to 'source/blender/blenkernel/intern/mball.c')
-rw-r--r--source/blender/blenkernel/intern/mball.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenkernel/intern/mball.c b/source/blender/blenkernel/intern/mball.c
index b93d924ddf9..19c98eb5139 100644
--- a/source/blender/blenkernel/intern/mball.c
+++ b/source/blender/blenkernel/intern/mball.c
@@ -2180,7 +2180,7 @@ static void free_metaball_octal_node(octal_node *node)
MEM_freeN(node);
}
-/* If scene include more then one MetaElem, then octree is used */
+/* If scene include more than one MetaElem, then octree is used */
static void init_metaball_octal_tree(int depth)
{
struct octal_node *node;
@@ -2269,7 +2269,7 @@ void BKE_mball_polygonize(Scene *scene, Object *ob, ListBase *dispbase)
G_mb.metaball_tree = NULL;
}
- /* if scene includes more then one MetaElem, then octal tree optimization is used */
+ /* if scene includes more than one MetaElem, then octal tree optimization is used */
if ((G_mb.totelem > 1) && (G_mb.totelem <= 64)) init_metaball_octal_tree(1);
if ((G_mb.totelem > 64) && (G_mb.totelem <= 128)) init_metaball_octal_tree(2);
if ((G_mb.totelem > 128) && (G_mb.totelem <= 512)) init_metaball_octal_tree(3);