acorn: add option to control generated parts
[clinton/3d-models.git] / triforce-fixed / triforce-fixed-simple.scad
1 // Fix for http://www.thingiverse.com/thing:24714
2 // Copyright (c) 2015 Clinton Ebadi <clinton@unknownlamer.org>
3 // CC Attribution 4.0 http://www.thingiverse.com/thing:24714
4
5 // Trifull.STL is the original model,
6 // "Crest of Hyrule Mantlepiece by Mr_MegaTronic
7 // Published on June 10, 2012
8 // www.thingiverse.com/thing:24714
9 // Creative Commons - Attribution"
10
11 // Left leg is malformed, just use the good side twice
12
13 module trihalf () {
14 difference () {
15 translate ([0, 3.5, 0]) import("trifull.STL");
16 translate([-33, -70, -2]) #cube (70);
17 }
18 }
19
20
21 trihalf();
22 // openscad says these can't touch which is stupid,
23 // insert a teensy tiny gap to make it export
24 translate([0,-0.00001,0]) mirror ([0,1,0]) trihalf ();