# snappy-reprap **Repository Path**: mirrors_deckar01/snappy-reprap ## Basic Information - **Project Name**: snappy-reprap - **Description**: The world's most 3D printable 3D printer. (Guinness Book of World Records 2017 & 2018) - **Primary Language**: Unknown - **License**: GPL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2026-04-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ![Snappy Full Rendering](https://github.com/revarbat/snappy-reprap/wiki/v3.0-snappy_small.png) Snappy-Reprap 3 =============== A parametric design for a cheap self-replicating 3D printer (reprap) that snaps together to minimize screws and non-printed parts. Important Links: What | URL -------------------- | ------------------------------------------------------- GitHub Repository | https://github.com/revarbat/snappy-reprap Project Wiki | https://github.com/revarbat/snappy-reprap/wiki/v3.0-Home Bill of Materials | https://github.com/revarbat/snappy-reprap/wiki/v3.0-BOM How to Assemble | https://github.com/revarbat/snappy-reprap/wiki/v3.0-Assembly RepRap.org Wiki Page | http://reprap.org/wiki/Snappy Dev Forum | https://groups.google.com/forum/#!forum/snappy-reprap-dev [![Join the chat at https://gitter.im/revarbat/snappy-reprap](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/revarbat/snappy-reprap?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) Generating STL Files ==================== For all platforms, you will need to have OpenSCAD installed. You can download OpenSCAD from their website at [http://www.openscad.org](http://www.openscad.org) OS X: ----- Under OS X, you'll need to make sure you have the Xcode command-line tools installed first. You can get them by installing Xcode from the App Store. You shouldn't need to change the Makefile. It should set $OPENSCAD as: ``` OPENSCAD=/Applications/OpenSCAD.app/Contents/MacOS/OpenSCAD ``` To generate the STL model files, open a terminal to the snappy-reprap directory and type: ``` make ``` Linux: ------ Under Linux, you will need to edit the Makefile, and change $OPENSCAD to: ``` OPENSCAD=openscad ``` To generate the STL model files, open a terminal to the snappy-reprap directory and type: ``` make ``` Windows: -------- Under Windows, you'll probably have to open and compile each `*_parts.scad` file individually and manually export the STL files. You _might_ be able to run the makefile under CygWin, if you set $OPENSCAD to something like: ``` OPENSCAD="/Program Files/OpenSCAD/openscad.exe" ```