scad-testing/circle.scad
Ian Burgess ed5c149696 updates
2025-07-20 14:03:27 -06:00

17 lines
298 B
OpenSCAD

union() {
difference() {
scale(v = [0.066, 0.066, 1]) {
surface(file = "circle3.png");
}
translate(v = [0, 0, 4]) {
cube(size = [500, 500, 1000]);
}
translate(v = [0, 0, -1]) {
cube(size = [500, 500, 1]);
}
}
translate(v = [16.5, 16.5, 0]) {
cylinder(h = 1, r = 16);
}
}