├── .gitignore ├── README.md ├── README_each.ja.md ├── README_each.md ├── csv └── preset.tsv ├── javascript └── js_mbw_each.js ├── misc ├── bw01-1.png ├── bw02.png ├── bw03.png ├── bw04.png ├── bw05.png ├── bw06.png ├── bw07.png ├── bw08.png ├── bw09.png ├── bw10.png ├── each │ ├── each_00.png │ └── each_01.png ├── preset_grid │ ├── COSINE.PNG │ ├── FAKE_CUBIC_HERMITE.PNG │ ├── FAKE_REVERSE_CUBIC_HERMITE.PNG │ ├── FLAT_25.PNG │ ├── FLAT_75.PNG │ ├── GRAD_A.PNG │ ├── GRAD_V.PNG │ ├── MID12_50.PNG │ ├── OUT07.PNG │ ├── OUT12.PNG │ ├── OUT12_5.PNG │ ├── REVERSE_COSINE.PNG │ ├── REVERSE_SMOOTHSTEP.PNG │ ├── RING08_5.PNG │ ├── RING08_SOFT.PNG │ ├── RING10_3.PNG │ ├── RING10_5.PNG │ ├── R_SMOOTHSTEP_2.PNG │ ├── R_SMOOTHSTEP_3.PNG │ ├── R_SMOOTHSTEP_4.PNG │ ├── R_SMOOTHSTEPx2.PNG │ ├── R_SMOOTHSTEPx3.PNG │ ├── R_SMOOTHSTEPx4.PNG │ ├── SMOOTHSTEP.PNG │ ├── SMOOTHSTEP_2.PNG │ ├── SMOOTHSTEP_3.PNG │ ├── SMOOTHSTEP_4.PNG │ ├── SMOOTHSTEPx2.PNG │ ├── SMOOTHSTEPx3.PNG │ ├── SMOOTHSTEPx4.PNG │ ├── TRUE_CUBIC_HERMITE.PNG │ ├── TRUE_REVERSE_CUBIC_HERMITE.PNG │ ├── WRAP08.PNG │ ├── WRAP12.PNG │ ├── WRAP14.PNG │ └── WRAP16.PNG ├── xy_plus-0000-40-7_1.png └── xy_plus-0000-40-7_1_2.png ├── scripts ├── mbw │ ├── merge_block_weighted.py │ └── ui_mbw.py ├── mbw_each │ ├── merge_block_weighted_mod.py │ └── ui_mbw_each.py ├── mbw_util │ ├── merge_history.py │ └── preset_weights.py └── merge_block_weighted_extension.py └── style.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/README.md -------------------------------------------------------------------------------- /README_each.ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/README_each.ja.md -------------------------------------------------------------------------------- /README_each.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/README_each.md -------------------------------------------------------------------------------- /csv/preset.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/csv/preset.tsv -------------------------------------------------------------------------------- /javascript/js_mbw_each.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/javascript/js_mbw_each.js -------------------------------------------------------------------------------- /misc/bw01-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/misc/bw01-1.png -------------------------------------------------------------------------------- /misc/bw02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/misc/bw02.png -------------------------------------------------------------------------------- /misc/bw03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/misc/bw03.png -------------------------------------------------------------------------------- /misc/bw04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/misc/bw04.png -------------------------------------------------------------------------------- /misc/bw05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/misc/bw05.png -------------------------------------------------------------------------------- /misc/bw06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/misc/bw06.png -------------------------------------------------------------------------------- /misc/bw07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/misc/bw07.png -------------------------------------------------------------------------------- /misc/bw08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/misc/bw08.png -------------------------------------------------------------------------------- /misc/bw09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/misc/bw09.png -------------------------------------------------------------------------------- /misc/bw10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/misc/bw10.png -------------------------------------------------------------------------------- /misc/each/each_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/misc/each/each_00.png -------------------------------------------------------------------------------- /misc/each/each_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/misc/each/each_01.png -------------------------------------------------------------------------------- /misc/preset_grid/COSINE.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/misc/preset_grid/COSINE.PNG -------------------------------------------------------------------------------- /misc/preset_grid/FAKE_CUBIC_HERMITE.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/misc/preset_grid/FAKE_CUBIC_HERMITE.PNG -------------------------------------------------------------------------------- /misc/preset_grid/FAKE_REVERSE_CUBIC_HERMITE.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/misc/preset_grid/FAKE_REVERSE_CUBIC_HERMITE.PNG -------------------------------------------------------------------------------- /misc/preset_grid/FLAT_25.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/misc/preset_grid/FLAT_25.PNG -------------------------------------------------------------------------------- /misc/preset_grid/FLAT_75.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/misc/preset_grid/FLAT_75.PNG -------------------------------------------------------------------------------- /misc/preset_grid/GRAD_A.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/misc/preset_grid/GRAD_A.PNG -------------------------------------------------------------------------------- /misc/preset_grid/GRAD_V.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/misc/preset_grid/GRAD_V.PNG -------------------------------------------------------------------------------- /misc/preset_grid/MID12_50.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/misc/preset_grid/MID12_50.PNG -------------------------------------------------------------------------------- /misc/preset_grid/OUT07.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/misc/preset_grid/OUT07.PNG -------------------------------------------------------------------------------- /misc/preset_grid/OUT12.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/misc/preset_grid/OUT12.PNG -------------------------------------------------------------------------------- /misc/preset_grid/OUT12_5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/misc/preset_grid/OUT12_5.PNG -------------------------------------------------------------------------------- /misc/preset_grid/REVERSE_COSINE.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/misc/preset_grid/REVERSE_COSINE.PNG -------------------------------------------------------------------------------- /misc/preset_grid/REVERSE_SMOOTHSTEP.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/misc/preset_grid/REVERSE_SMOOTHSTEP.PNG -------------------------------------------------------------------------------- /misc/preset_grid/RING08_5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/misc/preset_grid/RING08_5.PNG -------------------------------------------------------------------------------- /misc/preset_grid/RING08_SOFT.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/misc/preset_grid/RING08_SOFT.PNG -------------------------------------------------------------------------------- /misc/preset_grid/RING10_3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/misc/preset_grid/RING10_3.PNG -------------------------------------------------------------------------------- /misc/preset_grid/RING10_5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/misc/preset_grid/RING10_5.PNG -------------------------------------------------------------------------------- /misc/preset_grid/R_SMOOTHSTEP_2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/misc/preset_grid/R_SMOOTHSTEP_2.PNG -------------------------------------------------------------------------------- /misc/preset_grid/R_SMOOTHSTEP_3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/misc/preset_grid/R_SMOOTHSTEP_3.PNG -------------------------------------------------------------------------------- /misc/preset_grid/R_SMOOTHSTEP_4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/misc/preset_grid/R_SMOOTHSTEP_4.PNG -------------------------------------------------------------------------------- /misc/preset_grid/R_SMOOTHSTEPx2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/misc/preset_grid/R_SMOOTHSTEPx2.PNG -------------------------------------------------------------------------------- /misc/preset_grid/R_SMOOTHSTEPx3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/misc/preset_grid/R_SMOOTHSTEPx3.PNG -------------------------------------------------------------------------------- /misc/preset_grid/R_SMOOTHSTEPx4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/misc/preset_grid/R_SMOOTHSTEPx4.PNG -------------------------------------------------------------------------------- /misc/preset_grid/SMOOTHSTEP.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/misc/preset_grid/SMOOTHSTEP.PNG -------------------------------------------------------------------------------- /misc/preset_grid/SMOOTHSTEP_2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/misc/preset_grid/SMOOTHSTEP_2.PNG -------------------------------------------------------------------------------- /misc/preset_grid/SMOOTHSTEP_3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/misc/preset_grid/SMOOTHSTEP_3.PNG -------------------------------------------------------------------------------- /misc/preset_grid/SMOOTHSTEP_4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/misc/preset_grid/SMOOTHSTEP_4.PNG -------------------------------------------------------------------------------- /misc/preset_grid/SMOOTHSTEPx2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/misc/preset_grid/SMOOTHSTEPx2.PNG -------------------------------------------------------------------------------- /misc/preset_grid/SMOOTHSTEPx3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/misc/preset_grid/SMOOTHSTEPx3.PNG -------------------------------------------------------------------------------- /misc/preset_grid/SMOOTHSTEPx4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/misc/preset_grid/SMOOTHSTEPx4.PNG -------------------------------------------------------------------------------- /misc/preset_grid/TRUE_CUBIC_HERMITE.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/misc/preset_grid/TRUE_CUBIC_HERMITE.PNG -------------------------------------------------------------------------------- /misc/preset_grid/TRUE_REVERSE_CUBIC_HERMITE.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/misc/preset_grid/TRUE_REVERSE_CUBIC_HERMITE.PNG -------------------------------------------------------------------------------- /misc/preset_grid/WRAP08.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/misc/preset_grid/WRAP08.PNG -------------------------------------------------------------------------------- /misc/preset_grid/WRAP12.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/misc/preset_grid/WRAP12.PNG -------------------------------------------------------------------------------- /misc/preset_grid/WRAP14.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/misc/preset_grid/WRAP14.PNG -------------------------------------------------------------------------------- /misc/preset_grid/WRAP16.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/misc/preset_grid/WRAP16.PNG -------------------------------------------------------------------------------- /misc/xy_plus-0000-40-7_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/misc/xy_plus-0000-40-7_1.png -------------------------------------------------------------------------------- /misc/xy_plus-0000-40-7_1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/misc/xy_plus-0000-40-7_1_2.png -------------------------------------------------------------------------------- /scripts/mbw/merge_block_weighted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/scripts/mbw/merge_block_weighted.py -------------------------------------------------------------------------------- /scripts/mbw/ui_mbw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/scripts/mbw/ui_mbw.py -------------------------------------------------------------------------------- /scripts/mbw_each/merge_block_weighted_mod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/scripts/mbw_each/merge_block_weighted_mod.py -------------------------------------------------------------------------------- /scripts/mbw_each/ui_mbw_each.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/scripts/mbw_each/ui_mbw_each.py -------------------------------------------------------------------------------- /scripts/mbw_util/merge_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/scripts/mbw_util/merge_history.py -------------------------------------------------------------------------------- /scripts/mbw_util/preset_weights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/scripts/mbw_util/preset_weights.py -------------------------------------------------------------------------------- /scripts/merge_block_weighted_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/scripts/merge_block_weighted_extension.py -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc-mc/sdweb-merge-block-weighted-gui/HEAD/style.css --------------------------------------------------------------------------------