Thingiverse
Rebel Cookie Cutter
by avalero
113
Downloads
78
Likes
1
Makes
This is designed to cut cookies for the Rebel Alliance. The design is an evolution of Anandromeda desing. It has been done using OOML. Code is quite simple:
ScadObject rebel;
rebel.import_from_file("REBEL_Anita.scad");
Cylinder cyl(55,20);
Obj obj = cyl - rebel.scale(1,1,2);
ofstream file;
file.open("rebel_cookie.scad");
file << obj.gen_scad();
file.close();
More info about OOML in http://iearobotics.com/oomlwiki
ScadObject rebel;
rebel.import_from_file("REBEL_Anita.scad");
Cylinder cyl(55,20);
Obj obj = cyl - rebel.scale(1,1,2);
ofstream file;
file.open("rebel_cookie.scad");
file << obj.gen_scad();
file.close();
More info about OOML in http://iearobotics.com/oomlwiki
Sign in to leave a comment
Sign in