├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── ReadMe.md ├── assets ├── Patterns │ ├── dress_pencil_specification.json │ ├── hoody_mean_specification.json │ ├── js_mean_all_specification.json │ └── shirt_mean_specification.json ├── Sim_props │ ├── default_sim_props.yaml │ ├── gui_sim_props.yaml │ ├── mid_bending.yaml │ ├── minimal_bending.yaml │ ├── soft_flexy_ochra 30s.json │ ├── soft_ochra.json │ └── stiff_ochra.json ├── bodies │ ├── Readme.md │ ├── body_params.py │ ├── f_smpl_average_A40.obj │ ├── f_smpl_average_A40.yaml │ ├── ggg_body_segmentation.json │ ├── m_smpl_average_A40.obj │ ├── m_smpl_average_A40.yaml │ ├── mean_all.obj │ ├── mean_all.stl │ ├── mean_all.yaml │ ├── mean_all_apart.obj │ ├── mean_all_tpose.obj │ ├── mean_all_tpose.yaml │ ├── mean_female.obj │ ├── mean_female.yaml │ ├── mean_male.obj │ ├── mean_male.yaml │ └── smpl_vert_segmentation.json ├── design_params │ ├── default.yaml │ └── t-shirt.yaml ├── garment_programs │ ├── bands.py │ ├── base_classes.py │ ├── bodice.py │ ├── circle_skirt.py │ ├── collars.py │ ├── godet.py │ ├── meta_garment.py │ ├── pants.py │ ├── shapes.py │ ├── skirt_levels.py │ ├── skirt_paneled.py │ ├── sleeves.py │ ├── stats_utils.py │ └── tee.py └── img │ ├── err_dress_20s.png │ ├── err_dress_30s.png │ ├── err_dress_50s.png │ ├── err_js.png │ ├── err_red_modern.png │ ├── err_regency.png │ ├── fabric_texture.png │ ├── ggg_outline_mean_all.svg │ ├── header.png │ ├── millimiter_paper_1500_900.png │ └── siggraph_logo_thick_connection.svg ├── docs ├── Body Measurements GarmentCode.pdf ├── Installation.md ├── Running_Maya_Qualoth.md ├── Running_data_generation.md └── Running_garmentcode.md ├── gui.py ├── gui ├── __init__.py ├── callbacks.py ├── error_pages.py ├── gui_pattern.py └── maya_garmentviewer.py ├── pattern_data_sim.py ├── pattern_data_sim_runner.sh ├── pattern_fitter.py ├── pattern_sampler.py ├── post_processing_scripts ├── align_bodies.py └── gather_renders.py ├── pygarment ├── __init__.py ├── data_config.py ├── garmentcode │ ├── __init__.py │ ├── base.py │ ├── component.py │ ├── connector.py │ ├── edge.py │ ├── edge_factory.py │ ├── interface.py │ ├── operators.py │ ├── panel.py │ ├── params.py │ └── utils.py ├── mayaqltools │ ├── __init__.py │ ├── garmentUI.py │ ├── mayascene.py │ ├── qualothwrapper.py │ ├── scan_imitation.py │ ├── simulation.py │ └── utils.py ├── meshgen │ ├── __init__.py │ ├── boxmeshgen.py │ ├── datasim_utils.py │ ├── garment.py │ ├── render │ │ ├── pythonrender.py │ │ └── texture_utils.py │ ├── sim_config.py │ ├── simulation.py │ └── triangulation_utils.py └── pattern │ ├── __init__.py │ ├── cairo_dlls │ ├── cairosvg_LICENSE.txt │ ├── libGraphicsMagick++-12.dll │ ├── libbrotlicommon.dll │ ├── libbrotlidec.dll │ ├── libbrotlienc.dll │ ├── libbz2-1.dll │ ├── libcairo-2.dll │ ├── libcairo-gobject-2.dll │ ├── libcairomm-1.0-1.dll │ ├── libexpat-1.dll │ ├── libffi-8.dll │ ├── libfontconfig-1.dll │ ├── libfreetype-6.dll │ ├── libfribidi-0.dll │ ├── libgc-1.dll │ ├── libgcc_s_seh-1.dll │ ├── libgdk_pixbuf-2.0-0.dll │ ├── libgdkmm-3.0-1.dll │ ├── libgirepository-1.0-1.dll │ ├── libglib-2.0-0.dll │ ├── libglibmm-2.4-1.dll │ ├── libgmodule-2.0-0.dll │ ├── libgobject-2.0-0.dll │ ├── libgomp-1.dll │ ├── libgraphite2.dll │ ├── libgslcblas-0.dll │ ├── libgspell-1-2.dll │ ├── libharfbuzz-0.dll │ ├── libheif.dll │ ├── libhwy.dll │ ├── libiconv-2.dll │ ├── libidn2-0.dll │ ├── libintl-8.dll │ ├── libjasper.dll │ ├── libjbig-0.dll │ ├── libjxl_threads.dll │ ├── liblcms2-2.dll │ ├── liblqr-1-0.dll │ ├── libltdl-7.dll │ ├── liblzma-5.dll │ ├── libmpdec-2.dll │ ├── libncursesw6.dll │ ├── libnghttp2-14.dll │ ├── libnspr4.dll │ ├── libopenjp2-7.dll │ ├── libpanelw6.dll │ ├── libpango-1.0-0.dll │ ├── libpangocairo-1.0-0.dll │ ├── libpangoft2-1.0-0.dll │ ├── libpangomm-1.4-1.dll │ ├── libpangowin32-1.0-0.dll │ ├── libpcre2-8-0.dll │ ├── libpixman-1-0.dll │ ├── libplc4.dll │ ├── libplds4.dll │ ├── libpng16-16.dll │ ├── libpoppler-glib-8.dll │ ├── libpotrace-0.dll │ ├── libpsl-5.dll │ ├── libquadmath-0.dll │ ├── libraqm-0.dll │ ├── libreadline8.dll │ ├── librevenge-0.0.dll │ ├── librevenge-stream-0.0.dll │ ├── libsigc-2.0-0.dll │ ├── libsoup-2.4-1.dll │ ├── libssh2-1.dll │ ├── libssl-1_1-x64.dll │ ├── libstdc++-6.dll │ ├── libtermcap-0.dll │ ├── libthai-0.dll │ ├── libtiff-5.dll │ ├── libvisio-0.1.dll │ ├── libwebpdemux-2.dll │ ├── libwebpmux-3.dll │ ├── libwinpthread-1.dll │ ├── libwmf-0-2-7.dll │ ├── libwmflite-0-2-7.dll │ ├── libwpd-0.10.dll │ ├── libwpg-0.3.dll │ ├── libxslt-1.dll │ ├── libxxhash.dll │ ├── nss3.dll │ ├── nssutil3.dll │ ├── smime3.dll │ └── zlib1.dll │ ├── core.py │ ├── rotation.py │ ├── utils.py │ └── wrappers.py ├── pyproject.toml ├── setup.cfg ├── system.template.json ├── test_garment_sim.py └── test_garmentcode.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/LICENSE -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/ReadMe.md -------------------------------------------------------------------------------- /assets/Patterns/dress_pencil_specification.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/assets/Patterns/dress_pencil_specification.json -------------------------------------------------------------------------------- /assets/Patterns/hoody_mean_specification.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/assets/Patterns/hoody_mean_specification.json -------------------------------------------------------------------------------- /assets/Patterns/js_mean_all_specification.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/assets/Patterns/js_mean_all_specification.json -------------------------------------------------------------------------------- /assets/Patterns/shirt_mean_specification.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/assets/Patterns/shirt_mean_specification.json -------------------------------------------------------------------------------- /assets/Sim_props/default_sim_props.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/assets/Sim_props/default_sim_props.yaml -------------------------------------------------------------------------------- /assets/Sim_props/gui_sim_props.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/assets/Sim_props/gui_sim_props.yaml -------------------------------------------------------------------------------- /assets/Sim_props/mid_bending.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/assets/Sim_props/mid_bending.yaml -------------------------------------------------------------------------------- /assets/Sim_props/minimal_bending.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/assets/Sim_props/minimal_bending.yaml -------------------------------------------------------------------------------- /assets/Sim_props/soft_flexy_ochra 30s.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/assets/Sim_props/soft_flexy_ochra 30s.json -------------------------------------------------------------------------------- /assets/Sim_props/soft_ochra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/assets/Sim_props/soft_ochra.json -------------------------------------------------------------------------------- /assets/Sim_props/stiff_ochra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/assets/Sim_props/stiff_ochra.json -------------------------------------------------------------------------------- /assets/bodies/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/assets/bodies/Readme.md -------------------------------------------------------------------------------- /assets/bodies/body_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/assets/bodies/body_params.py -------------------------------------------------------------------------------- /assets/bodies/f_smpl_average_A40.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/assets/bodies/f_smpl_average_A40.obj -------------------------------------------------------------------------------- /assets/bodies/f_smpl_average_A40.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/assets/bodies/f_smpl_average_A40.yaml -------------------------------------------------------------------------------- /assets/bodies/ggg_body_segmentation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/assets/bodies/ggg_body_segmentation.json -------------------------------------------------------------------------------- /assets/bodies/m_smpl_average_A40.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/assets/bodies/m_smpl_average_A40.obj -------------------------------------------------------------------------------- /assets/bodies/m_smpl_average_A40.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/assets/bodies/m_smpl_average_A40.yaml -------------------------------------------------------------------------------- /assets/bodies/mean_all.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/assets/bodies/mean_all.obj -------------------------------------------------------------------------------- /assets/bodies/mean_all.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/assets/bodies/mean_all.stl -------------------------------------------------------------------------------- /assets/bodies/mean_all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/assets/bodies/mean_all.yaml -------------------------------------------------------------------------------- /assets/bodies/mean_all_apart.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/assets/bodies/mean_all_apart.obj -------------------------------------------------------------------------------- /assets/bodies/mean_all_tpose.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/assets/bodies/mean_all_tpose.obj -------------------------------------------------------------------------------- /assets/bodies/mean_all_tpose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/assets/bodies/mean_all_tpose.yaml -------------------------------------------------------------------------------- /assets/bodies/mean_female.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/assets/bodies/mean_female.obj -------------------------------------------------------------------------------- /assets/bodies/mean_female.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/assets/bodies/mean_female.yaml -------------------------------------------------------------------------------- /assets/bodies/mean_male.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/assets/bodies/mean_male.obj -------------------------------------------------------------------------------- /assets/bodies/mean_male.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/assets/bodies/mean_male.yaml -------------------------------------------------------------------------------- /assets/bodies/smpl_vert_segmentation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/assets/bodies/smpl_vert_segmentation.json -------------------------------------------------------------------------------- /assets/design_params/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/assets/design_params/default.yaml -------------------------------------------------------------------------------- /assets/design_params/t-shirt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/assets/design_params/t-shirt.yaml -------------------------------------------------------------------------------- /assets/garment_programs/bands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/assets/garment_programs/bands.py -------------------------------------------------------------------------------- /assets/garment_programs/base_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/assets/garment_programs/base_classes.py -------------------------------------------------------------------------------- /assets/garment_programs/bodice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/assets/garment_programs/bodice.py -------------------------------------------------------------------------------- /assets/garment_programs/circle_skirt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/assets/garment_programs/circle_skirt.py -------------------------------------------------------------------------------- /assets/garment_programs/collars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/assets/garment_programs/collars.py -------------------------------------------------------------------------------- /assets/garment_programs/godet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/assets/garment_programs/godet.py -------------------------------------------------------------------------------- /assets/garment_programs/meta_garment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/assets/garment_programs/meta_garment.py -------------------------------------------------------------------------------- /assets/garment_programs/pants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/assets/garment_programs/pants.py -------------------------------------------------------------------------------- /assets/garment_programs/shapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/assets/garment_programs/shapes.py -------------------------------------------------------------------------------- /assets/garment_programs/skirt_levels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/assets/garment_programs/skirt_levels.py -------------------------------------------------------------------------------- /assets/garment_programs/skirt_paneled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/assets/garment_programs/skirt_paneled.py -------------------------------------------------------------------------------- /assets/garment_programs/sleeves.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/assets/garment_programs/sleeves.py -------------------------------------------------------------------------------- /assets/garment_programs/stats_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/assets/garment_programs/stats_utils.py -------------------------------------------------------------------------------- /assets/garment_programs/tee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/assets/garment_programs/tee.py -------------------------------------------------------------------------------- /assets/img/err_dress_20s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/assets/img/err_dress_20s.png -------------------------------------------------------------------------------- /assets/img/err_dress_30s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/assets/img/err_dress_30s.png -------------------------------------------------------------------------------- /assets/img/err_dress_50s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/assets/img/err_dress_50s.png -------------------------------------------------------------------------------- /assets/img/err_js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/assets/img/err_js.png -------------------------------------------------------------------------------- /assets/img/err_red_modern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/assets/img/err_red_modern.png -------------------------------------------------------------------------------- /assets/img/err_regency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/assets/img/err_regency.png -------------------------------------------------------------------------------- /assets/img/fabric_texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/assets/img/fabric_texture.png -------------------------------------------------------------------------------- /assets/img/ggg_outline_mean_all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/assets/img/ggg_outline_mean_all.svg -------------------------------------------------------------------------------- /assets/img/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/assets/img/header.png -------------------------------------------------------------------------------- /assets/img/millimiter_paper_1500_900.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/assets/img/millimiter_paper_1500_900.png -------------------------------------------------------------------------------- /assets/img/siggraph_logo_thick_connection.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/assets/img/siggraph_logo_thick_connection.svg -------------------------------------------------------------------------------- /docs/Body Measurements GarmentCode.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/docs/Body Measurements GarmentCode.pdf -------------------------------------------------------------------------------- /docs/Installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/docs/Installation.md -------------------------------------------------------------------------------- /docs/Running_Maya_Qualoth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/docs/Running_Maya_Qualoth.md -------------------------------------------------------------------------------- /docs/Running_data_generation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/docs/Running_data_generation.md -------------------------------------------------------------------------------- /docs/Running_garmentcode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/docs/Running_garmentcode.md -------------------------------------------------------------------------------- /gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/gui.py -------------------------------------------------------------------------------- /gui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gui/callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/gui/callbacks.py -------------------------------------------------------------------------------- /gui/error_pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/gui/error_pages.py -------------------------------------------------------------------------------- /gui/gui_pattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/gui/gui_pattern.py -------------------------------------------------------------------------------- /gui/maya_garmentviewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/gui/maya_garmentviewer.py -------------------------------------------------------------------------------- /pattern_data_sim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pattern_data_sim.py -------------------------------------------------------------------------------- /pattern_data_sim_runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pattern_data_sim_runner.sh -------------------------------------------------------------------------------- /pattern_fitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pattern_fitter.py -------------------------------------------------------------------------------- /pattern_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pattern_sampler.py -------------------------------------------------------------------------------- /post_processing_scripts/align_bodies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/post_processing_scripts/align_bodies.py -------------------------------------------------------------------------------- /post_processing_scripts/gather_renders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/post_processing_scripts/gather_renders.py -------------------------------------------------------------------------------- /pygarment/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/__init__.py -------------------------------------------------------------------------------- /pygarment/data_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/data_config.py -------------------------------------------------------------------------------- /pygarment/garmentcode/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pygarment/garmentcode/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/garmentcode/base.py -------------------------------------------------------------------------------- /pygarment/garmentcode/component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/garmentcode/component.py -------------------------------------------------------------------------------- /pygarment/garmentcode/connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/garmentcode/connector.py -------------------------------------------------------------------------------- /pygarment/garmentcode/edge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/garmentcode/edge.py -------------------------------------------------------------------------------- /pygarment/garmentcode/edge_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/garmentcode/edge_factory.py -------------------------------------------------------------------------------- /pygarment/garmentcode/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/garmentcode/interface.py -------------------------------------------------------------------------------- /pygarment/garmentcode/operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/garmentcode/operators.py -------------------------------------------------------------------------------- /pygarment/garmentcode/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/garmentcode/panel.py -------------------------------------------------------------------------------- /pygarment/garmentcode/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/garmentcode/params.py -------------------------------------------------------------------------------- /pygarment/garmentcode/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/garmentcode/utils.py -------------------------------------------------------------------------------- /pygarment/mayaqltools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/mayaqltools/__init__.py -------------------------------------------------------------------------------- /pygarment/mayaqltools/garmentUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/mayaqltools/garmentUI.py -------------------------------------------------------------------------------- /pygarment/mayaqltools/mayascene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/mayaqltools/mayascene.py -------------------------------------------------------------------------------- /pygarment/mayaqltools/qualothwrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/mayaqltools/qualothwrapper.py -------------------------------------------------------------------------------- /pygarment/mayaqltools/scan_imitation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/mayaqltools/scan_imitation.py -------------------------------------------------------------------------------- /pygarment/mayaqltools/simulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/mayaqltools/simulation.py -------------------------------------------------------------------------------- /pygarment/mayaqltools/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/mayaqltools/utils.py -------------------------------------------------------------------------------- /pygarment/meshgen/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pygarment/meshgen/boxmeshgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/meshgen/boxmeshgen.py -------------------------------------------------------------------------------- /pygarment/meshgen/datasim_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/meshgen/datasim_utils.py -------------------------------------------------------------------------------- /pygarment/meshgen/garment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/meshgen/garment.py -------------------------------------------------------------------------------- /pygarment/meshgen/render/pythonrender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/meshgen/render/pythonrender.py -------------------------------------------------------------------------------- /pygarment/meshgen/render/texture_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/meshgen/render/texture_utils.py -------------------------------------------------------------------------------- /pygarment/meshgen/sim_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/meshgen/sim_config.py -------------------------------------------------------------------------------- /pygarment/meshgen/simulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/meshgen/simulation.py -------------------------------------------------------------------------------- /pygarment/meshgen/triangulation_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/meshgen/triangulation_utils.py -------------------------------------------------------------------------------- /pygarment/pattern/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/__init__.py -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/cairosvg_LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/cairosvg_LICENSE.txt -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libGraphicsMagick++-12.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libGraphicsMagick++-12.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libbrotlicommon.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libbrotlicommon.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libbrotlidec.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libbrotlidec.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libbrotlienc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libbrotlienc.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libbz2-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libbz2-1.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libcairo-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libcairo-2.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libcairo-gobject-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libcairo-gobject-2.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libcairomm-1.0-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libcairomm-1.0-1.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libexpat-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libexpat-1.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libffi-8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libffi-8.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libfontconfig-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libfontconfig-1.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libfreetype-6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libfreetype-6.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libfribidi-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libfribidi-0.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libgc-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libgc-1.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libgcc_s_seh-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libgcc_s_seh-1.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libgdk_pixbuf-2.0-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libgdk_pixbuf-2.0-0.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libgdkmm-3.0-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libgdkmm-3.0-1.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libgirepository-1.0-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libgirepository-1.0-1.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libglib-2.0-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libglib-2.0-0.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libglibmm-2.4-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libglibmm-2.4-1.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libgmodule-2.0-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libgmodule-2.0-0.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libgobject-2.0-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libgobject-2.0-0.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libgomp-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libgomp-1.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libgraphite2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libgraphite2.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libgslcblas-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libgslcblas-0.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libgspell-1-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libgspell-1-2.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libharfbuzz-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libharfbuzz-0.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libheif.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libheif.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libhwy.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libhwy.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libiconv-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libiconv-2.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libidn2-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libidn2-0.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libintl-8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libintl-8.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libjasper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libjasper.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libjbig-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libjbig-0.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libjxl_threads.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libjxl_threads.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/liblcms2-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/liblcms2-2.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/liblqr-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/liblqr-1-0.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libltdl-7.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libltdl-7.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/liblzma-5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/liblzma-5.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libmpdec-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libmpdec-2.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libncursesw6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libncursesw6.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libnghttp2-14.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libnghttp2-14.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libnspr4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libnspr4.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libopenjp2-7.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libopenjp2-7.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libpanelw6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libpanelw6.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libpango-1.0-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libpango-1.0-0.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libpangocairo-1.0-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libpangocairo-1.0-0.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libpangoft2-1.0-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libpangoft2-1.0-0.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libpangomm-1.4-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libpangomm-1.4-1.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libpangowin32-1.0-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libpangowin32-1.0-0.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libpcre2-8-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libpcre2-8-0.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libpixman-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libpixman-1-0.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libplc4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libplc4.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libplds4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libplds4.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libpng16-16.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libpng16-16.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libpoppler-glib-8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libpoppler-glib-8.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libpotrace-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libpotrace-0.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libpsl-5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libpsl-5.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libquadmath-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libquadmath-0.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libraqm-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libraqm-0.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libreadline8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libreadline8.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/librevenge-0.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/librevenge-0.0.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/librevenge-stream-0.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/librevenge-stream-0.0.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libsigc-2.0-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libsigc-2.0-0.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libsoup-2.4-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libsoup-2.4-1.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libssh2-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libssh2-1.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libssl-1_1-x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libssl-1_1-x64.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libstdc++-6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libstdc++-6.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libtermcap-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libtermcap-0.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libthai-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libthai-0.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libtiff-5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libtiff-5.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libvisio-0.1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libvisio-0.1.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libwebpdemux-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libwebpdemux-2.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libwebpmux-3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libwebpmux-3.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libwinpthread-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libwinpthread-1.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libwmf-0-2-7.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libwmf-0-2-7.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libwmflite-0-2-7.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libwmflite-0-2-7.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libwpd-0.10.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libwpd-0.10.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libwpg-0.3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libwpg-0.3.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libxslt-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libxslt-1.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/libxxhash.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/libxxhash.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/nss3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/nss3.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/nssutil3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/nssutil3.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/smime3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/smime3.dll -------------------------------------------------------------------------------- /pygarment/pattern/cairo_dlls/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/cairo_dlls/zlib1.dll -------------------------------------------------------------------------------- /pygarment/pattern/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/core.py -------------------------------------------------------------------------------- /pygarment/pattern/rotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/rotation.py -------------------------------------------------------------------------------- /pygarment/pattern/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/utils.py -------------------------------------------------------------------------------- /pygarment/pattern/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pygarment/pattern/wrappers.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/setup.cfg -------------------------------------------------------------------------------- /system.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/system.template.json -------------------------------------------------------------------------------- /test_garment_sim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/test_garment_sim.py -------------------------------------------------------------------------------- /test_garmentcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/GarmentCode/HEAD/test_garmentcode.py --------------------------------------------------------------------------------