├── .github ├── CODEOWNERS ├── dependabot.yml └── workflows │ └── ruff.yml ├── .gitignore ├── LICENSE ├── README.md ├── assets ├── enable_addon.png ├── install_addon.png ├── install_addon_2.png ├── launch_addon_menu.png ├── open_preferences.png ├── plugin.png └── zoo-banner.png ├── requirements.txt └── src ├── icons ├── zoo-icon.png └── zoo-icon_16x16.png ├── text_to_cad.py └── utils ├── icon_to_bytes.py └── resize_img.py /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KittyCAD/text-to-cad-blender-addon/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KittyCAD/text-to-cad-blender-addon/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ruff.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KittyCAD/text-to-cad-blender-addon/HEAD/.github/workflows/ruff.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KittyCAD/text-to-cad-blender-addon/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KittyCAD/text-to-cad-blender-addon/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KittyCAD/text-to-cad-blender-addon/HEAD/README.md -------------------------------------------------------------------------------- /assets/enable_addon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KittyCAD/text-to-cad-blender-addon/HEAD/assets/enable_addon.png -------------------------------------------------------------------------------- /assets/install_addon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KittyCAD/text-to-cad-blender-addon/HEAD/assets/install_addon.png -------------------------------------------------------------------------------- /assets/install_addon_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KittyCAD/text-to-cad-blender-addon/HEAD/assets/install_addon_2.png -------------------------------------------------------------------------------- /assets/launch_addon_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KittyCAD/text-to-cad-blender-addon/HEAD/assets/launch_addon_menu.png -------------------------------------------------------------------------------- /assets/open_preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KittyCAD/text-to-cad-blender-addon/HEAD/assets/open_preferences.png -------------------------------------------------------------------------------- /assets/plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KittyCAD/text-to-cad-blender-addon/HEAD/assets/plugin.png -------------------------------------------------------------------------------- /assets/zoo-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KittyCAD/text-to-cad-blender-addon/HEAD/assets/zoo-banner.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KittyCAD/text-to-cad-blender-addon/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/icons/zoo-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KittyCAD/text-to-cad-blender-addon/HEAD/src/icons/zoo-icon.png -------------------------------------------------------------------------------- /src/icons/zoo-icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KittyCAD/text-to-cad-blender-addon/HEAD/src/icons/zoo-icon_16x16.png -------------------------------------------------------------------------------- /src/text_to_cad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KittyCAD/text-to-cad-blender-addon/HEAD/src/text_to_cad.py -------------------------------------------------------------------------------- /src/utils/icon_to_bytes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KittyCAD/text-to-cad-blender-addon/HEAD/src/utils/icon_to_bytes.py -------------------------------------------------------------------------------- /src/utils/resize_img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KittyCAD/text-to-cad-blender-addon/HEAD/src/utils/resize_img.py --------------------------------------------------------------------------------