summaryrefslogtreecommitdiff
path: root/lib/stitches/ripple_stitch.py
diff options
context:
space:
mode:
authorGeorge Steel <george.steel@gmail.com>2022-11-27 13:06:29 -0500
committerGitHub <noreply@github.com>2022-11-27 13:06:29 -0500
commitb67c198171252ce0e8e86f00997ad3317cd319a0 (patch)
tree632b045ff689f2c13614007e6bfa35ce9583b921 /lib/stitches/ripple_stitch.py
parent3f346ea5ff0703b0d6b7bc723fec91a92fce0eed (diff)
parentb525188788cbed633aef75c2d6950f029023b1d4 (diff)
Merge pull request #1925 from inkstitch/kaalleen/satin-offset-position
Fix satin offset_points
Diffstat (limited to 'lib/stitches/ripple_stitch.py')
-rw-r--r--lib/stitches/ripple_stitch.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stitches/ripple_stitch.py b/lib/stitches/ripple_stitch.py
index 67362f12..6b7ce6ca 100644
--- a/lib/stitches/ripple_stitch.py
+++ b/lib/stitches/ripple_stitch.py
@@ -220,7 +220,7 @@ def _get_start_rotation(line):
def _generate_satin_guide_helper_lines(stroke, outline, guide_line):
spacing = guide_line.center_line.length / (stroke.get_line_count() - 1)
- rail_points = guide_line.plot_points_on_rails(spacing, 0)
+ rail_points = guide_line.plot_points_on_rails(spacing)
point0 = rail_points[0][0]
point1 = rail_points[1][0]