This website works better with JavaScript.
首頁
探索
說明
登入
3D-models
/
naaimachine
關註
1
收藏
0
複製
0
程式碼
問題管理
0
合併請求
0
版本發佈
0
Wiki
Activity
瀏覽代碼
Add kabelklem model
master
Wouter Horlings
4 年之前
父節點
db0e11339e
當前提交
f9f2842a66
共有
1 個文件被更改
,包括
33 次插入
和
0 次删除
分割檢視
Diff Options
Show Stats
Download Patch File
Download Diff File
+33
-0
kabelklem/kabelklem.scad
+ 33
- 0
kabelklem/kabelklem.scad
查看文件
@@ -0,0 +1,33 @@
$fn = $preview ? 16 : 72;
module test(){
difference(){
cylinder(r=5, h = 4);
cylinder(r=3, h = 4);
}
}
module screw_hole(){
difference(){
cylinder(d=9.34, h=7);
cylinder(d=3.9, h=9);
}
}
difference(){
hull(){
translate([7,0,0])
cylinder(d=9.34, h=7);
translate([-7,0,0])
cylinder(d=9.34, h=7);
}
translate([7,0,0])
cylinder(d=3.9, h=9);
translate([-7,0,0])
cylinder(d=3.9, h=9);
translate([0,0,-4.5])
rotate([90,0,0])
cylinder(r=7,center=true,h=20);
}
Write
Preview
Loading…
取消
儲存