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 'io_curve_svg/import_svg.py')
-rw-r--r--io_curve_svg/import_svg.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/io_curve_svg/import_svg.py b/io_curve_svg/import_svg.py
index b09dfd1b..c8c492ff 100644
--- a/io_curve_svg/import_svg.py
+++ b/io_curve_svg/import_svg.py
@@ -652,6 +652,11 @@ class SVGPathParser:
return
+ last = self._spline['points'][-1]
+ if last['handle_right_type'] == 'VECTOR' and handle_left_type == 'FREE':
+ last['handle_right'] = (last['x'], last['y'])
+ last['handle_right_type'] = 'FREE'
+
point = {'x': x,
'y': y,