Added a new file for transformations. First one doesn't work due to reported bug in openscad

This commit is contained in:
Elmom 2011-03-26 13:54:45 +02:00
parent 263df7d174
commit cdc3b0c699

3
transformations.scad Normal file
View file

@ -0,0 +1,3 @@
module scale(v, reference=[0, 0, 0]) {
translate(-reference) scale(v) translate(reference) child(0);
}