diff options
| author | Kaalleen <36401965+kaalleen@users.noreply.github.com> | 2025-07-19 22:30:15 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-19 22:30:15 +0200 |
| commit | ffc0db1ddf2f790fecaa67cdacec87f207e999e8 (patch) | |
| tree | 9938f5a242ca6bb1ac045dd7aed96b6097f6c629 /lib/svg/__init__.py | |
| parent | fdd3dbc956cd9d2be10bcbf4834e47dd89fcb754 (diff) | |
Convert to satin internally (3874)
Diffstat (limited to 'lib/svg/__init__.py')
| -rw-r--r-- | lib/svg/__init__.py | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/lib/svg/__init__.py b/lib/svg/__init__.py index b17a37f0..6694d534 100644 --- a/lib/svg/__init__.py +++ b/lib/svg/__init__.py @@ -4,8 +4,10 @@ # Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details. from .guides import get_guides -from .path import apply_transforms, get_node_transform, get_correction_transform, line_strings_to_csp, point_lists_to_csp, line_strings_to_path -from .path import apply_transforms, get_node_transform, get_correction_transform, line_strings_to_csp, point_lists_to_csp +from .path import (apply_transforms, get_correction_transform, + get_node_transform, line_strings_to_coordinate_lists, + line_strings_to_csp, line_strings_to_path, + point_lists_to_csp) from .rendering import color_block_to_point_lists, render_stitch_plan -from .svg import get_document, generate_unique_id -from .units import *
\ No newline at end of file +from .svg import generate_unique_id, get_document +from .units import * |
