mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2025-01-17 01:49:48 +00:00
7 lines
242 B
OpenSCAD
7 lines
242 B
OpenSCAD
include <BOSL2/std.scad>
|
|
|
|
cube([20,4,4], anchor=TOP+FRONT) {
|
|
attach(FRONT, BACK) cube([20,20,4]);
|
|
attach(TOP, BOTTOM) cube([20,4,20]);
|
|
attach(TOP+FRONT, norot=true) recolor("green") interior_fillet(l=20, r=10, orient=ORIENT_XNEG);
|
|
}
|