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 <brechtvanlommel@gmail.com>2019-07-31 14:27:19 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-07-31 14:28:52 +0300
commit4e1cda9885a6ef508396a8f60c292350af8f3f3d (patch)
treee3051b0a0710fd83e241531426e263c6c8542f6c /mesh_inset
parent2176c8f2aaac6eb1fb6d1e159100396f1c500f22 (diff)
Spelling fixes in comments and descriptions, patch by luzpaz
Differential Revision: https://developer.blender.org/D5240
Diffstat (limited to 'mesh_inset')
-rw-r--r--mesh_inset/triquad.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesh_inset/triquad.py b/mesh_inset/triquad.py
index b94da8b0..1a5c266f 100644
--- a/mesh_inset/triquad.py
+++ b/mesh_inset/triquad.py
@@ -815,7 +815,7 @@ def _EMatch(er):
return (er, er[1][1])
i = random.randint(0, len(er) - 1)
eri = (wi, _, tl, tr) = er[i]
- # case a: include eri. exlude other edges that touch tl or tr
+ # case a: include eri. exclude other edges that touch tl or tr
a = _CopyExcluding(er, tl, tr)
a.append(eri)
(amatch, wa) = _DCMatch(a)