Skip to content

Commit

Permalink
version bump 1.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
tatarize committed Apr 17, 2023
1 parent 0748b03 commit 0867b70
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = svgelements
version = 1.9.2
version = 1.9.3
description = Svg Elements Parsing
long_description_content_type=text/markdown
long_description = file: README.md
Expand Down
12 changes: 6 additions & 6 deletions svgelements/svgelements.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
and the Arc can do exact arc calculations if scipy is installed.
"""

SVGELEMENTS_VERSION = "1.9.2"
SVGELEMENTS_VERSION = "1.9.3"

MIN_DEPTH = 5
ERROR = 1e-12
Expand Down Expand Up @@ -6030,7 +6030,7 @@ def z_point(self):
@property
def smooth_point(self):
"""Returns the smoothing control point for the smooth commands.
With regards to the SVG standard if the last command was a curve the smooth
In regard to the SVG standard if the last command was a curve the smooth
control point is the reflection of the previous control point.
If the last command was not a curve, the smooth_point is coincident with the current.
Expand Down Expand Up @@ -6455,7 +6455,7 @@ def segments(self, transformed=True):

def approximate_arcs_with_cubics(self, error=0.1):
"""
Iterates through this path and replaces any Arcs with cubic bezier curves.
Iterates through this path and replaces any Arcs with cubic Bézier curves.
"""
sweep_limit = tau * error
for s in range(len(self) - 1, -1, -1):
Expand All @@ -6466,7 +6466,7 @@ def approximate_arcs_with_cubics(self, error=0.1):

def approximate_arcs_with_quads(self, error=0.1):
"""
Iterates through this path and replaces any Arcs with quadratic bezier curves.
Iterates through this path and replaces any Arcs with quadratic Bézier curves.
"""
sweep_limit = tau * error
for s in range(len(self) - 1, -1, -1):
Expand All @@ -6477,7 +6477,7 @@ def approximate_arcs_with_quads(self, error=0.1):

def approximate_bezier_with_circular_arcs(self, error=0.01):
"""
Iterates through this path and replaces any bezier curves with circular arcs.
Iterates through this path and replaces any Bézier curves with circular arcs.
"""
for s in range(len(self) - 1, -1, -1):
segment = self[s]
Expand Down Expand Up @@ -8955,7 +8955,7 @@ def parse(
transform=None,
context=None,
parse_display_none=False,
on_error="ignore"
on_error="ignore",
):
"""
Parses the SVG file. All attributes are things which the SVG document itself could not be aware of, such as
Expand Down

0 comments on commit 0867b70

Please sign in to comment.