mirror of
https://github.com/kennetek/gridfinity-rebuilt-openscad.git
synced 2024-12-22 14:53:25 +00:00
Rename chamfered profile to stacking_lip_chamfered()
This commit is contained in:
parent
015daff2e8
commit
69cb64e98d
1 changed files with 5 additions and 3 deletions
|
@ -385,9 +385,11 @@ module stacking_lip() {
|
|||
}
|
||||
|
||||
/**
|
||||
* @brief Stacking lip with a rounded top.
|
||||
* @brief Stacking lip with a with a chamfered (rounded) top.
|
||||
* @details Based on https://gridfinity.xyz/specification/
|
||||
* Also includes a support base.
|
||||
*/
|
||||
module stacking_lip_rounded_top() {
|
||||
module stacking_lip_chamfered() {
|
||||
radius_center_y = h_lip - r_f1;
|
||||
|
||||
union() {
|
||||
|
@ -416,7 +418,7 @@ module profile_wall(height_mm) {
|
|||
assert(is_num(height_mm))
|
||||
translate([1.4, 0, 0]){
|
||||
translate([0, height_mm, 0])
|
||||
stacking_lip_rounded_top();
|
||||
stacking_lip_chamfered();
|
||||
translate([stacking_lip_depth-d_wall/2, 0, 0])
|
||||
square([d_wall/2, height_mm]);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue