mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2024-12-29 16:29:40 +00:00
18 lines
424 B
OpenSCAD
18 lines
424 B
OpenSCAD
include <BOSL2/constants.scad>
|
|
include <BOSL2/transforms.scad>
|
|
include <BOSL2/primitives.scad>
|
|
include <BOSL2/shapes.scad>
|
|
|
|
|
|
diff("hole", "body pole")
|
|
sphere(d=100, $tags="body") {
|
|
zcyl(d=55, h=100, $tags="pole"); // attach() not needed for center-to-center.
|
|
tags("hole") {
|
|
xcyl(d=55, h=101);
|
|
ycyl(d=55, h=101);
|
|
}
|
|
zcyl(d=15, h=140, $tags="axle");
|
|
}
|
|
|
|
|
|
// vim: noexpandtab tabstop=4 shiftwidth=4 softtabstop=4 nowrap
|