ImplicitCAD/Examples/example24.escad

11 lines
430 B
Plaintext
Raw Normal View History

2020-01-11 04:35:20 +03:00
// example24.escad -- the variably twisted extruded product of the difference of 5 circles.
linear_extrude (height = 40, center=true, twist(h) = 35*cos(h*2*pi/60)) {
difference (r = 8) {
circle (10);
translate ([22,0]) circle (10);
translate ([0,22]) circle (10);
translate ([-22,0]) circle (10);
translate ([0,-22]) circle (10);
}
}