Skip to content

Instantly share code, notes, and snippets.

@kadin2048
Created January 21, 2016 05:23
Show Gist options
  • Save kadin2048/dff94a1b6a6d20f94b1d to your computer and use it in GitHub Desktop.
Save kadin2048/dff94a1b6a6d20f94b1d to your computer and use it in GitHub Desktop.
OpenSCAD Complex Model Skeleton
// name
// author
// GLOBALS
prefix_varname = 10;
module myObject() {
difference() {
union() {
// primitives you want to ADD to the model go here
}
union() {
// primitives you want to SUBTRACT from the model go here
}
}
}
@kadin2048
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment