Previous week|Assciment list|Next week
60 years ago, Tang De-Jhang had been kill by the military during 228 Incident. The location of his death is near by Fablab Tainan(about 100M away) and Tainan city government set up a statue to commemorate his death. In this week, I decided to scan his statue and trying to print-it.
slowly move the scanner.
note: if you need a better angle for scaning, remember to prepare a 'strong' chair....
it takes about 1 hr to print it out.
I try to make use openSCAD darts
Use the function:
the original .scad file is here
or you can download stl file directly.
and here is another long body version STL of the dart.
translate([0,0,82])
{
intersection()
{
intersection_for(n = [1 : 6])
{
rotate([0, 0, n * 60])
{
translate([8,0,0])
sphere(r=18);
}
}
translate ([0,0,-40]) sphere(45);
translate([-20,-.5,-25]) cube([40,1,40]);
}
//fin in plane of Y
intersection()
{
intersection_for(n = [1 : 6])
{
rotate([0, 0, n * 60])
{
translate([8,0,0])
sphere(r=18);
}
}
translate ([0,0,-40]) sphere(45);
translate([-.5,-20,-25]) cube([1,40,40]);
}
}
translate([0,0,47]) sphere(1.5,$fs=.25);//top
translate([0,0,13]) cylinder(34,2.25,1.5,$fs=.25); // long top
translate([0,0,15]) cylinder(4,3.5,2.25,$fs=.25);
translate([0,0,9]) cylinder(6,6,3.5,$fs=.25);
translate([0,0,7]) cylinder(2,10,6,$fs=.25); //small to big
difference()
{ // Socket for magnet. Leave .8mm between the two for a double wall.
cylinder(7,10.5,10.5,$fs=.25);
translate([0,0,-1]) #cylinder(5,9.1,9.1,$fs=.25);
}
This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License.