├── .github └── workflows │ └── publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── assets ├── diffusion-cg.png ├── normalize.png └── vectorscope-cc.png ├── callback_manager.py ├── cc_nodes.py ├── cg_nodes.py ├── pyproject.toml └── utils.py /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pamparamm/ComfyUI-vectorscope-cc/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pamparamm/ComfyUI-vectorscope-cc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pamparamm/ComfyUI-vectorscope-cc/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pamparamm/ComfyUI-vectorscope-cc/HEAD/__init__.py -------------------------------------------------------------------------------- /assets/diffusion-cg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pamparamm/ComfyUI-vectorscope-cc/HEAD/assets/diffusion-cg.png -------------------------------------------------------------------------------- /assets/normalize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pamparamm/ComfyUI-vectorscope-cc/HEAD/assets/normalize.png -------------------------------------------------------------------------------- /assets/vectorscope-cc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pamparamm/ComfyUI-vectorscope-cc/HEAD/assets/vectorscope-cc.png -------------------------------------------------------------------------------- /callback_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pamparamm/ComfyUI-vectorscope-cc/HEAD/callback_manager.py -------------------------------------------------------------------------------- /cc_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pamparamm/ComfyUI-vectorscope-cc/HEAD/cc_nodes.py -------------------------------------------------------------------------------- /cg_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pamparamm/ComfyUI-vectorscope-cc/HEAD/cg_nodes.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pamparamm/ComfyUI-vectorscope-cc/HEAD/pyproject.toml -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pamparamm/ComfyUI-vectorscope-cc/HEAD/utils.py --------------------------------------------------------------------------------