gitextract_k0kyt9hn/ ├── .gitignore ├── .readthedocs.yaml ├── LICENSE ├── NOTICE ├── README.md ├── README_ja_jp.md ├── README_zh_cn.md ├── api_server.py ├── assets/ │ ├── 1.glb │ ├── example_prompts.txt │ ├── modelviewer-template.html │ └── modelviewer-textured-template.html ├── blender_addon.py ├── docs/ │ ├── Makefile │ ├── README.md │ ├── make.bat │ ├── requirements.txt │ └── source/ │ ├── _static/ │ │ └── css/ │ │ └── custom.css │ ├── citation.md │ ├── conf.py │ ├── index.md │ ├── installation/ │ │ └── index.md │ ├── modelzoo.md │ └── started/ │ ├── api.md │ ├── blender.md │ ├── code.md │ ├── comfyui.md │ ├── gradio.md │ ├── index.md │ └── studio.md ├── examples/ │ ├── fast_shape_gen_multiview.py │ ├── fast_shape_gen_with_flashvdm.py │ ├── fast_texture_gen_multiview.py │ ├── faster_shape_gen_with_flashvdm_mini_turbo.py │ ├── shape_gen.py │ ├── shape_gen_mini.py │ ├── shape_gen_multiview.py │ ├── shape_gen_v2_1.py │ ├── textured_shape_gen.py │ ├── textured_shape_gen_mini.py │ └── textured_shape_gen_multiview.py ├── gradio_app.py ├── hy3dgen/ │ ├── __init__.py │ ├── rembg.py │ ├── shapegen/ │ │ ├── __init__.py │ │ ├── models/ │ │ │ ├── __init__.py │ │ │ ├── autoencoders/ │ │ │ │ ├── __init__.py │ │ │ │ ├── attention_blocks.py │ │ │ │ ├── attention_processors.py │ │ │ │ ├── model.py │ │ │ │ ├── surface_extractors.py │ │ │ │ └── volume_decoders.py │ │ │ ├── conditioner.py │ │ │ └── denoisers/ │ │ │ ├── __init__.py │ │ │ ├── hunyuan3ddit.py │ │ │ ├── hunyuandit.py │ │ │ └── moe_layers.py │ │ ├── pipelines.py │ │ ├── postprocessors.py │ │ ├── preprocessors.py │ │ ├── schedulers.py │ │ ├── surface_loaders.py │ │ └── utils.py │ ├── texgen/ │ │ ├── __init__.py │ │ ├── custom_rasterizer/ │ │ │ ├── custom_rasterizer/ │ │ │ │ ├── __init__.py │ │ │ │ ├── io_glb.py │ │ │ │ ├── io_obj.py │ │ │ │ └── render.py │ │ │ ├── lib/ │ │ │ │ └── custom_rasterizer_kernel/ │ │ │ │ ├── __init__.py │ │ │ │ ├── grid_neighbor.cpp │ │ │ │ ├── rasterizer.cpp │ │ │ │ ├── rasterizer.h │ │ │ │ └── rasterizer_gpu.cu │ │ │ └── setup.py │ │ ├── differentiable_renderer/ │ │ │ ├── __init__.py │ │ │ ├── camera_utils.py │ │ │ ├── compile_mesh_painter.bat │ │ │ ├── mesh_processor.cpp │ │ │ ├── mesh_processor.py │ │ │ ├── mesh_render.py │ │ │ ├── mesh_utils.py │ │ │ └── setup.py │ │ ├── hunyuanpaint/ │ │ │ ├── __init__.py │ │ │ ├── pipeline.py │ │ │ └── unet/ │ │ │ ├── __init__.py │ │ │ └── modules.py │ │ ├── pipelines.py │ │ └── utils/ │ │ ├── __init__.py │ │ ├── alignImg4Tex_utils.py │ │ ├── counter_utils.py │ │ ├── dehighlight_utils.py │ │ ├── imagesuper_utils.py │ │ ├── multiview_utils.py │ │ ├── simplify_mesh_utils.py │ │ └── uv_warp_utils.py │ └── text2image.py ├── minimal_demo.py ├── minimal_vae_demo.py ├── requirements.txt └── setup.py