1
0
Fork 0
This repository has been archived on 2020-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
my-prusai3-settings/printTests/testCube-10x10x10-open.scad

14 lines
176 B
OpenSCAD

module open_test_cube()
{
difference() {
cube([10, 10, 10], center = true);
translate(v = [0, 0, 1]) {
cube([8, 8, 10], center = true);
}
}
}
open_test_cube();