├── .gitignore ├── Bunny-LowPoly.stl ├── LICENSE.txt ├── Makefile ├── README.md ├── camera.c ├── camera.h ├── corners.c ├── dodecahedron-corner.scad ├── dodecahedron.scad ├── faces.c ├── hiddenwire.c ├── icosahedron-corners.scad ├── mobius-maker ├── mobius-raw.stl ├── seg.h ├── stl-convert ├── stl_3d.c ├── stl_3d.h ├── svg.h ├── test.c ├── test1.scad ├── test1.stl ├── test2.scad ├── test2.stl ├── test3.scad ├── test3.stl ├── tetrahedron.scad ├── tri.c ├── tri.h ├── unfold.c ├── v3.h └── wireframe.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osresearch/papercraft/HEAD/.gitignore -------------------------------------------------------------------------------- /Bunny-LowPoly.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osresearch/papercraft/HEAD/Bunny-LowPoly.stl -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osresearch/papercraft/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osresearch/papercraft/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osresearch/papercraft/HEAD/README.md -------------------------------------------------------------------------------- /camera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osresearch/papercraft/HEAD/camera.c -------------------------------------------------------------------------------- /camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osresearch/papercraft/HEAD/camera.h -------------------------------------------------------------------------------- /corners.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osresearch/papercraft/HEAD/corners.c -------------------------------------------------------------------------------- /dodecahedron-corner.scad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osresearch/papercraft/HEAD/dodecahedron-corner.scad -------------------------------------------------------------------------------- /dodecahedron.scad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osresearch/papercraft/HEAD/dodecahedron.scad -------------------------------------------------------------------------------- /faces.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osresearch/papercraft/HEAD/faces.c -------------------------------------------------------------------------------- /hiddenwire.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osresearch/papercraft/HEAD/hiddenwire.c -------------------------------------------------------------------------------- /icosahedron-corners.scad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osresearch/papercraft/HEAD/icosahedron-corners.scad -------------------------------------------------------------------------------- /mobius-maker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osresearch/papercraft/HEAD/mobius-maker -------------------------------------------------------------------------------- /mobius-raw.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osresearch/papercraft/HEAD/mobius-raw.stl -------------------------------------------------------------------------------- /seg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osresearch/papercraft/HEAD/seg.h -------------------------------------------------------------------------------- /stl-convert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osresearch/papercraft/HEAD/stl-convert -------------------------------------------------------------------------------- /stl_3d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osresearch/papercraft/HEAD/stl_3d.c -------------------------------------------------------------------------------- /stl_3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osresearch/papercraft/HEAD/stl_3d.h -------------------------------------------------------------------------------- /svg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osresearch/papercraft/HEAD/svg.h -------------------------------------------------------------------------------- /test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osresearch/papercraft/HEAD/test.c -------------------------------------------------------------------------------- /test1.scad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osresearch/papercraft/HEAD/test1.scad -------------------------------------------------------------------------------- /test1.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osresearch/papercraft/HEAD/test1.stl -------------------------------------------------------------------------------- /test2.scad: -------------------------------------------------------------------------------- 1 | sphere(r=20, $fs=10); 2 | -------------------------------------------------------------------------------- /test2.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osresearch/papercraft/HEAD/test2.stl -------------------------------------------------------------------------------- /test3.scad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osresearch/papercraft/HEAD/test3.scad -------------------------------------------------------------------------------- /test3.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osresearch/papercraft/HEAD/test3.stl -------------------------------------------------------------------------------- /tetrahedron.scad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osresearch/papercraft/HEAD/tetrahedron.scad -------------------------------------------------------------------------------- /tri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osresearch/papercraft/HEAD/tri.c -------------------------------------------------------------------------------- /tri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osresearch/papercraft/HEAD/tri.h -------------------------------------------------------------------------------- /unfold.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osresearch/papercraft/HEAD/unfold.c -------------------------------------------------------------------------------- /v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osresearch/papercraft/HEAD/v3.h -------------------------------------------------------------------------------- /wireframe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osresearch/papercraft/HEAD/wireframe.c --------------------------------------------------------------------------------