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:
Diffstat (limited to 'curve_tools/Curves.py')
-rw-r--r--curve_tools/Curves.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/curve_tools/Curves.py b/curve_tools/Curves.py
index e2608eeb..d5608e3c 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?