Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brecht@blender.org>2022-03-15 20:29:39 +0300
committerBrecht Van Lommel <brecht@blender.org>2022-03-15 20:31:13 +0300
commitdf34f4f1db405c5b8deeb03db0937bee9ba81f42 (patch)
tree7daaac24ea36db57a8ae0095e5b818190dde4910 /add_mesh_extra_objects
parent2502531bb4ab4a76a876c003dab34951da31e1eb (diff)
Cleanup: fix source comment typos
Contributed by luzpaz. Differential Revision: https://developer.blender.org/D14312
Diffstat (limited to 'add_mesh_extra_objects')
-rw-r--r--add_mesh_extra_objects/Blocks.py2
-rw-r--r--add_mesh_extra_objects/add_mesh_rocks/randomize_texture.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/add_mesh_extra_objects/Blocks.py b/add_mesh_extra_objects/Blocks.py
index 928ed1d6..22676670 100644
--- a/add_mesh_extra_objects/Blocks.py
+++ b/add_mesh_extra_objects/Blocks.py
@@ -1246,7 +1246,7 @@ def plan(Thesketch, oldrows=0):
# rows = [list of row objects]
rows = []
- # splits are places where we NEED a row division, to accomidate openings
+ # splits are places where we NEED a row division, to accommodate openings
# add a split for the bottom row
splits = [dims['b'] + settings['hb']]
diff --git a/add_mesh_extra_objects/add_mesh_rocks/randomize_texture.py b/add_mesh_extra_objects/add_mesh_rocks/randomize_texture.py
index 8fc92890..b1dd99bd 100644
--- a/add_mesh_extra_objects/add_mesh_rocks/randomize_texture.py
+++ b/add_mesh_extra_objects/add_mesh_rocks/randomize_texture.py
@@ -135,7 +135,7 @@ def randomizeTexture(texture, level=1):
elif texture.type == 'VORONOI':
metrics = ['DISTANCE', 'DISTANCE_SQUARED', 'MANHATTAN', 'CHEBYCHEV',
'MINKOVSKY_HALF', 'MINKOVSKY_FOUR', 'MINKOVSKY']
- # Settings for first dispalcement level:
+ # Settings for first displacement level:
if level == 0:
tempInt = randint(0, 1)
texture.distance_metric = metrics[tempInt]