diff options
| author | Kaalleen <36401965+kaalleen@users.noreply.github.com> | 2022-11-10 14:03:32 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-10 14:03:32 +0100 |
| commit | 7445b91851f6bd4abc255490f917f6c578bbf0f1 (patch) | |
| tree | 953e60cf81f23069386c4d89376736e0fccae59f /lib/stitches/guided_fill.py | |
| parent | ea13c429973e50ef55ee4bf4403a0618cb9b26d8 (diff) | |
lettering: ignore invalid glyph layers (#1892)
Diffstat (limited to 'lib/stitches/guided_fill.py')
| -rw-r--r-- | lib/stitches/guided_fill.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stitches/guided_fill.py b/lib/stitches/guided_fill.py index 6a92f8e8..14c58b7a 100644 --- a/lib/stitches/guided_fill.py +++ b/lib/stitches/guided_fill.py @@ -149,7 +149,7 @@ def take_only_line_strings(thing): def apply_stitches(line, max_stitch_length, num_staggers, row_spacing, row_num): if num_staggers == 0: - num_staggers = 1 # sanity check to avoid division by zero. + num_staggers = 1 # sanity check to avoid division by zero. start = ((row_num / num_staggers) % 1) * max_stitch_length projections = np.arange(start, line.length, max_stitch_length) points = np.array([line.interpolate(projection).coords[0] for projection in projections]) |
