1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
|
# Authors: see git history
#
# Copyright (c) 2010 Authors
# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details.
from .about import About
from .apply_palette import ApplyPalette
from .apply_threadlist import ApplyThreadlist
from .auto_run import AutoRun
from .auto_satin import AutoSatin
from .batch_lettering import BatchLettering
from .break_apart import BreakApart
from .cleanup import Cleanup
from .commands_scale_symbols import CommandsScaleSymbols
from .cut_satin import CutSatin
from .cutwork_segmentation import CutworkSegmentation
from .density_map import DensityMap
from .display_stacking_order import DisplayStackingOrder
from .duplicate_params import DuplicateParams
from .element_info import ElementInfo
from .fill_to_satin import FillToSatin
from .fill_to_stroke import FillToStroke
from .flip import Flip
from .generate_palette import GeneratePalette
from .global_commands import GlobalCommands
from .gradient_blocks import GradientBlocks
from .input import Input
from .install import Install
from .install_custom_palette import InstallCustomPalette
from .jump_to_stroke import JumpToStroke
from .jump_to_trim import JumpToTrim
from .knockdown_fill import KnockdownFill
from .layer_commands import LayerCommands
from .lettering import Lettering
from .lettering_along_path import LetteringAlongPath
from .lettering_custom_font_dir import LetteringCustomFontDir
from .lettering_edit_json import LetteringEditJson
from .lettering_fill_composed_glyphs import LetteringFillComposedGlyphs
from .lettering_font_sample import LetteringFontSample
from .lettering_force_lock_stitches import LetteringForceLockStitches
from .lettering_generate_json import LetteringGenerateJson
from .lettering_remove_kerning import LetteringRemoveKerning
from .lettering_set_color_sort_index import LetteringSetColorSortIndex
from .lettering_svg_font_to_layers import LetteringSvgFontToLayers
from .letters_to_font import LettersToFont
from .object_commands import ObjectCommands
from .object_commands_toggle_visibility import ObjectCommandsToggleVisibility
from .outline import Outline
from .output import Output
from .palette_split_text import PaletteSplitText
from .palette_to_text import PaletteToText
from .params import Params
from .png_realistic import PngRealistic
from .png_simple import PngSimple
from .preferences import Preferences
from .print_pdf import Print
from .redwork import Redwork
from .remove_duplicated_points import RemoveDuplicatedPoints
from .remove_embroidery_settings import RemoveEmbroiderySettings
from .reorder import Reorder
from .satin_multicolor import SatinMulticolor
from .satin_to_stroke import SatinToStroke
from .select_elements import SelectElements
from .selection_to_anchor_line import SelectionToAnchorLine
from .selection_to_guide_line import SelectionToGuideLine
from .selection_to_pattern import SelectionToPattern
from .sew_stack_editor import SewStackEditor
from .simulator import Simulator
from .stitch_plan_preview import StitchPlanPreview
from .stitch_plan_preview_undo import StitchPlanPreviewUndo
from .stroke_to_lpe_satin import StrokeToLpeSatin
from .stroke_to_satin import StrokeToSatin
from .tartan import Tartan
from .test_swatches import TestSwatches
from .thread_list import ThreadList
from .transform_elements import TransformElements
from .troubleshoot import Troubleshoot
from .unlink_clone import UnlinkClone
from .update_svg import UpdateSvg
from .zigzag_line_to_satin import ZigzagLineToSatin
from .zip import Zip
extensions = [
About,
ApplyPalette,
ApplyThreadlist,
AutoRun,
AutoSatin,
BatchLettering,
BreakApart,
Cleanup,
CommandsScaleSymbols,
CutSatin,
CutworkSegmentation,
DensityMap,
DisplayStackingOrder,
DuplicateParams,
ElementInfo,
FillToSatin,
FillToStroke,
Flip,
GeneratePalette,
GlobalCommands,
GradientBlocks,
Input,
Install,
InstallCustomPalette,
JumpToStroke,
JumpToTrim,
KnockdownFill,
LayerCommands,
Lettering,
LetteringAlongPath,
LetteringCustomFontDir,
LetteringEditJson,
LetteringFillComposedGlyphs,
LetteringFontSample,
LetteringForceLockStitches,
LetteringGenerateJson,
LetteringRemoveKerning,
LetteringSetColorSortIndex,
LetteringSvgFontToLayers,
LettersToFont,
ObjectCommands,
ObjectCommandsToggleVisibility,
Outline,
Output,
PaletteSplitText,
PaletteToText,
Params,
PngRealistic,
PngSimple,
Preferences,
Print,
Redwork,
RemoveDuplicatedPoints,
RemoveEmbroiderySettings,
Reorder,
SatinMulticolor,
SatinToStroke,
SelectElements,
SelectionToAnchorLine,
SelectionToGuideLine,
SelectionToPattern,
SewStackEditor,
Simulator,
StitchPlanPreview,
StitchPlanPreviewUndo,
StrokeToLpeSatin,
StrokeToSatin,
Tartan,
TestSwatches,
ThreadList,
TransformElements,
Troubleshoot,
UnlinkClone,
UpdateSvg,
ZigzagLineToSatin,
Zip
]
|