10 lines
75 B
OpenSCAD
10 lines
75 B
OpenSCAD
|
|
||
|
module test_cube()
|
||
|
{
|
||
|
cube([20, 40, 3], center = true);
|
||
|
|
||
|
}
|
||
|
|
||
|
test_cube();
|
||
|
|