猫门挂钩
This commit is contained in:
30
猫猫用品/猫门挂钩 - 门框挂钩.scad
Normal file
30
猫猫用品/猫门挂钩 - 门框挂钩.scad
Normal file
@ -0,0 +1,30 @@
|
||||
|
||||
// 卡槽宽度
|
||||
width = 8;
|
||||
// 卡槽长度
|
||||
height = 200;
|
||||
thickness = 8;
|
||||
|
||||
// 门框宽度
|
||||
frame_width = 58;
|
||||
// 门框深度
|
||||
frame_depth = 12;
|
||||
|
||||
difference() {
|
||||
union() {
|
||||
cube([frame_width + width * 2, height, frame_depth + thickness]);
|
||||
cube([height, frame_width + width * 2, frame_depth + thickness]);
|
||||
};
|
||||
// 门框
|
||||
translate([width, width, 0])
|
||||
union() {
|
||||
cube([frame_width, height, frame_depth]);
|
||||
cube([height, frame_width, frame_depth]);
|
||||
};
|
||||
}
|
||||
|
||||
translate([frame_width / 2 + width, frame_width / 2 + width, frame_depth + thickness])
|
||||
cylinder(r=15, h=10);
|
||||
|
||||
translate([frame_width / 2 + width, frame_width / 2 + width, frame_depth + thickness + 10])
|
||||
cylinder(r=30, h=8);
|
BIN
猫猫用品/猫门挂钩 - 门框挂钩.stl
(Stored with Git LFS)
Normal file
BIN
猫猫用品/猫门挂钩 - 门框挂钩.stl
(Stored with Git LFS)
Normal file
Binary file not shown.
Reference in New Issue
Block a user