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:
authorSergey Sharybin <sergey.vfx@gmail.com>2018-10-29 16:50:42 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2018-10-29 16:50:42 +0300
commit85e6619a02f53f690ebfd269fbbfb6e98a20174a (patch)
tree417eeec60f206217e9a7f44f2033da2b35899d69 /io_curve_svg
parentd65bc48926b7ea3b2ae7a87db1b0a92f1537fea6 (diff)
parent08cdf06f89b64d7af20929b8e2464bc67adc01dc (diff)
Merge branch 'master' into blender2.8
Diffstat (limited to 'io_curve_svg')
-rw-r--r--io_curve_svg/import_svg.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/io_curve_svg/import_svg.py b/io_curve_svg/import_svg.py
index 3aa32d3c..1a8c2f65 100644
--- a/io_curve_svg/import_svg.py
+++ b/io_curve_svg/import_svg.py
@@ -408,7 +408,7 @@ SVGTransforms = {'translate': SVGTransformTranslate,
def SVGParseStyles(node, context):
"""
Parse node to get different styles for displaying geometries
- (materilas, filling flags, etc..)
+ (materials, filling flags, etc..)
"""
styles = SVGEmptyStyles.copy()
@@ -747,7 +747,7 @@ class SVGPathParser:
def _pathCurveToCS(self, code):
"""
- Cubic BEZIER CurveTo path command
+ Cubic BEZIER CurveTo path command
"""
c = code.lower()
@@ -784,7 +784,7 @@ class SVGPathParser:
def _pathCurveToQT(self, code):
"""
- Qyadracic BEZIER CurveTo path command
+ Quadratic BEZIER CurveTo path command
"""
c = code.lower()