├── .github ├── FUNDING.yml └── workflows │ └── build.yml ├── CMakeLists.txt ├── CODE_OF_CONDUCT.md ├── LICENSE.md ├── README.md ├── embroidery.c ├── embroidery.h ├── sew.1 └── sew.c /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embroidermodder/libembroidery/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embroidermodder/libembroidery/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embroidermodder/libembroidery/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embroidermodder/libembroidery/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embroidermodder/libembroidery/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embroidermodder/libembroidery/HEAD/README.md -------------------------------------------------------------------------------- /embroidery.c: -------------------------------------------------------------------------------- 1 | #define LIBEMBROIDERY_IMPLEMENTATION 2 | #include "embroidery.h" 3 | -------------------------------------------------------------------------------- /embroidery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embroidermodder/libembroidery/HEAD/embroidery.h -------------------------------------------------------------------------------- /sew.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embroidermodder/libembroidery/HEAD/sew.1 -------------------------------------------------------------------------------- /sew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embroidermodder/libembroidery/HEAD/sew.c --------------------------------------------------------------------------------