├── .gitignore ├── LICENSE ├── Makefile ├── plate.scad ├── plate.stl ├── recirculating.scad └── recirculating.stl /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.gcode 3 | *.stl 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcrocholl/recirculating/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcrocholl/recirculating/HEAD/Makefile -------------------------------------------------------------------------------- /plate.scad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcrocholl/recirculating/HEAD/plate.scad -------------------------------------------------------------------------------- /plate.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcrocholl/recirculating/HEAD/plate.stl -------------------------------------------------------------------------------- /recirculating.scad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcrocholl/recirculating/HEAD/recirculating.scad -------------------------------------------------------------------------------- /recirculating.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcrocholl/recirculating/HEAD/recirculating.stl --------------------------------------------------------------------------------