Various OpenSCAD models, STLs and gcode generated from those models. They are either in raw SCAD, or SolidPython.
gcode is generated for a Prusa i3 MK3, from my slic3r-presets; settings are written into the gcode, so inspect the end of the files to see what settings they use.
There is a hacked together script for generating scad files; to use:
- Install Python 3.6+
- Install requirements from
requirements.txt
- Create a new module in the
prints
directory, following the module format described below. - Run
./scripts/solid module_name -- --param_override=value
A module must export the following:
- A
Params
class, which includes Python 3 type annotations for each parameter and inheritsprints.ParamsBase
- A
main(params: Params)
function, which takes an instantiatedPrams
class and returns asolidpython
object
Until this is better documented, see the clamp attachment module.
Creative Commons Attribution (CC BY 3.0)
Some models are released under different licenses, depending on their original
source (if any). For those purposes, a LICENSE
file in a given folder, or a
license header in a particular file takes precedence over the repos overall
license.