Updated offset() to correct API

master
Marius Kintel 2015-02-23 01:59:34 -05:00
parent aaed62060c
commit 878cd0a8d8
1 changed files with 2 additions and 3 deletions

View File

@ -13,10 +13,9 @@ module outline(wall = 1) {
}
}
// offsetting with a positive value and join_type = "round"
// allows to create rounded corners easily
// offsetting with a positive value allows to create rounded corners easily
linear_extrude(height = foot_height, scale = 0.5) {
offset(10, join_type = "round") {
offset(10) {
square(50, center = true);
}
}