Created
January 21, 2016 05:23
-
-
Save kadin2048/dff94a1b6a6d20f94b1d to your computer and use it in GitHub Desktop.
OpenSCAD Complex Model Skeleton
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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 | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Based on https://www.youtube.com/watch?v=kZN_HCtXwLU