├── .github ├── FUNDING.yml └── workflows │ ├── create_tagged_release_with_packages.yaml │ └── package.json ├── .gitignore ├── ArcWelderPlugin.py ├── LICENSE ├── README.md ├── __init__.py ├── arcwelder_settings.def.json ├── bin ├── linux │ └── ArcWelder ├── osx │ └── ArcWelder └── win64 │ └── ArcWelder.exe └── plugin.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fieldOfView/Cura-ArcWelderPlugin/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/create_tagged_release_with_packages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fieldOfView/Cura-ArcWelderPlugin/HEAD/.github/workflows/create_tagged_release_with_packages.yaml -------------------------------------------------------------------------------- /.github/workflows/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fieldOfView/Cura-ArcWelderPlugin/HEAD/.github/workflows/package.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fieldOfView/Cura-ArcWelderPlugin/HEAD/.gitignore -------------------------------------------------------------------------------- /ArcWelderPlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fieldOfView/Cura-ArcWelderPlugin/HEAD/ArcWelderPlugin.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fieldOfView/Cura-ArcWelderPlugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fieldOfView/Cura-ArcWelderPlugin/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fieldOfView/Cura-ArcWelderPlugin/HEAD/__init__.py -------------------------------------------------------------------------------- /arcwelder_settings.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fieldOfView/Cura-ArcWelderPlugin/HEAD/arcwelder_settings.def.json -------------------------------------------------------------------------------- /bin/linux/ArcWelder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fieldOfView/Cura-ArcWelderPlugin/HEAD/bin/linux/ArcWelder -------------------------------------------------------------------------------- /bin/osx/ArcWelder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fieldOfView/Cura-ArcWelderPlugin/HEAD/bin/osx/ArcWelder -------------------------------------------------------------------------------- /bin/win64/ArcWelder.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fieldOfView/Cura-ArcWelderPlugin/HEAD/bin/win64/ArcWelder.exe -------------------------------------------------------------------------------- /plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fieldOfView/Cura-ArcWelderPlugin/HEAD/plugin.json --------------------------------------------------------------------------------