├── .gitignore ├── Makefile ├── README.md ├── boxmaker.scad ├── demo.scad ├── demo_01.png ├── demo_02.png └── simple_box.scad /.gitignore: -------------------------------------------------------------------------------- 1 | gen/ 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxv/openscad-boxmaker/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxv/openscad-boxmaker/HEAD/README.md -------------------------------------------------------------------------------- /boxmaker.scad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxv/openscad-boxmaker/HEAD/boxmaker.scad -------------------------------------------------------------------------------- /demo.scad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxv/openscad-boxmaker/HEAD/demo.scad -------------------------------------------------------------------------------- /demo_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxv/openscad-boxmaker/HEAD/demo_01.png -------------------------------------------------------------------------------- /demo_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxv/openscad-boxmaker/HEAD/demo_02.png -------------------------------------------------------------------------------- /simple_box.scad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxv/openscad-boxmaker/HEAD/simple_box.scad --------------------------------------------------------------------------------