mirror of
https://github.com/jhbruhn/respira.git
synced 2026-01-27 02:13:41 +00:00
Some checks are pending
Build, Test, and Lint / Build, Test, and Lint (push) Waiting to run
Draft Release / Draft Release (push) Waiting to run
Draft Release / Build Web App (push) Blocked by required conditions
Draft Release / Build Release - macos-latest (push) Blocked by required conditions
Draft Release / Build Release - ubuntu-latest (push) Blocked by required conditions
Draft Release / Build Release - windows-latest (push) Blocked by required conditions
Draft Release / Upload to GitHub Release (push) Blocked by required conditions
17 lines
771 B
TypeScript
17 lines
771 B
TypeScript
/**
|
|
* Embroidery command constants
|
|
* These are bitmask flags used to identify stitch types in parsed embroidery files
|
|
*
|
|
* Note: PyStitch may use sequential values (0, 1, 2, etc.) internally,
|
|
* but pyembroidery (which PyStitch is based on) uses these bitmask values
|
|
* for compatibility with the embroidery format specifications.
|
|
*/
|
|
|
|
// Stitch type flags (bitmasks - can be combined)
|
|
export const STITCH = 0x00; // Regular stitch (no flags)
|
|
export const MOVE = 0x10; // Jump/move stitch (move without stitching)
|
|
export const JUMP = MOVE; // Alias: JUMP is the same as MOVE
|
|
export const TRIM = 0x20; // Trim thread command
|
|
export const COLOR_CHANGE = 0x40; // Color change command
|
|
export const STOP = 0x80; // Stop command
|
|
export const END = 0x100; // End of pattern
|