Nipkow/3D-parts/inc/fix-disque.scad

20 lines
446 B
OpenSCAD
Raw Normal View History

2016-10-07 18:55:55 +02:00
fixAxis();
module fixAxis(){
difference(){
union(){
translate([0,0,-2.99])
linear_extrude (height=3)
import (file="motor-dc-m15n.dxf", layer="fixation-axe2", $fn=100);
2016-10-07 19:23:27 +02:00
linear_extrude (height=7)
2016-10-07 18:55:55 +02:00
import (file="motor-dc-m15n.dxf", layer="fixation-axe", $fn=100);
}
union(){
2016-10-07 19:23:27 +02:00
translate([0,-11,4])
2016-10-07 18:55:55 +02:00
rotate([270,0,0])
cylinder(r=1.5,h=22,$fn=100);
}
}
}