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-01-05 17:27:33 +0300
committerBrecht Van Lommel <brecht@blender.org>2022-01-05 17:46:41 +0300
commitd68dca98ce6705dd69285692f3cdc1dbf2213c1d (patch)
tree293ad05d82522964478ddacb22e56f831194043c /curve_tools
parentb1cec919ec7d255c29d31bc21c91d98e0d118182 (diff)
Cleanup: fix typos in source code
Contributed by luzpaz. Differential Revision: https://developer.blender.org/D5801
Diffstat (limited to 'curve_tools')
-rw-r--r--curve_tools/cad.py2
-rw-r--r--curve_tools/curves.py2
-rw-r--r--curve_tools/remove_doubles.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/curve_tools/cad.py b/curve_tools/cad.py
index dd11b4c7..ae96f869 100644
--- a/curve_tools/cad.py
+++ b/curve_tools/cad.py
@@ -37,7 +37,7 @@ class Fillet(bpy.types.Operator):
radius: bpy.props.FloatProperty(name='Radius', description='Radius of the rounded corners', unit='LENGTH', min=0.0, default=0.1)
chamfer_mode: bpy.props.BoolProperty(name='Chamfer', description='Cut off sharp without rounding', default=False)
- limit_half_way: bpy.props.BoolProperty(name='Limit Half Way', description='Limits the segements to half their length in order to prevent collisions', default=False)
+ limit_half_way: bpy.props.BoolProperty(name='Limit Half Way', description='Limits the segments to half their length in order to prevent collisions', default=False)
@classmethod
def poll(cls, context):
diff --git a/curve_tools/curves.py b/curve_tools/curves.py
index 202487de..8a1a1484 100644
--- a/curve_tools/curves.py
+++ b/curve_tools/curves.py
@@ -390,7 +390,7 @@ class BezierSpline:
self.segments.append(BezierSegment(self.segments[-1].bezierPoint2, spline2.segments[0].bezierPoint1))
for seg2 in spline2.segments: self.segments.append(seg2)
- self.resolution += spline2.resolution # extra segment will usually be short -- impact on resolution negligable
+ self.resolution += spline2.resolution # extra segment will usually be short -- impact on resolution negligible
self.isCyclic = False # is this ok?
diff --git a/curve_tools/remove_doubles.py b/curve_tools/remove_doubles.py
index d69b3e0a..f0b3dbb5 100644
--- a/curve_tools/remove_doubles.py
+++ b/curve_tools/remove_doubles.py
@@ -7,7 +7,7 @@ bl_info = {
'version': (1, 1),
'blender': (2, 80, 0),
'location': 'View3D > Context menu (W/RMB) > Remove Doubles',
- 'description': 'Adds comand "Remove Doubles" for curves',
+ 'description': 'Adds command "Remove Doubles" for curves',
'category': 'Add Curve'
}