diff options
| author | Lex Neva <github.com@lexneva.name> | 2017-11-14 01:02:14 +0000 |
|---|---|---|
| committer | Lex Neva <github.com@lexneva.name> | 2017-11-14 01:02:14 +0000 |
| commit | 2a97c5d25a00a7ba048803b3c98f3dcc8662cdc1 (patch) | |
| tree | fa387ace8b74c4dd92ea7a6c17f516cb688eec44 /embroider.py | |
| parent | 68f246b0b7af2344aeedd900fd23f72b7874b79d (diff) | |
fix braino
Diffstat (limited to 'embroider.py')
| -rw-r--r-- | embroider.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/embroider.py b/embroider.py index 5e58b872..3732a09b 100644 --- a/embroider.py +++ b/embroider.py @@ -1264,8 +1264,8 @@ class SatinColumn(EmbroideryElement): # Imagine a satin column as a curvy ladder. # The two long paths are the "rails" of the ladder. The remainder are # the "rungs". - rails = input_paths[:2] - rungs = shgeo.MultiLineString(input_paths[2:]) + rails = paths[:2] + rungs = shgeo.MultiLineString(paths[2:]) # The rails should stay in the order they were in the original CSP. # (this lets the user control where the satin starts and ends) |
