mirror of
https://github.com/Luzifer/3dmodels.git
synced 2024-12-22 18:31:19 +00:00
Add cable holder
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
af3673bdad
commit
944a6d298f
3 changed files with 1087 additions and 0 deletions
|
@ -6,6 +6,7 @@ In case you have use for those models thankfully to Github you can preview all m
|
|||
|
||||
| Model | Source | Version | Title |
|
||||
| ----- | ------ | ------- | ----- |
|
||||
| [`cable-holder.stl`](cable-holder.stl) | [`cable-holder.jscad`](cable-holder.jscad) | 0.1.0 | Cable holder for velcro tape |
|
||||
| [`change-holder.stl`](change-holder.stl) | [`change-holder.jscad`](change-holder.jscad) | 0.1.1 | Spare-Change holder |
|
||||
| [`eink_2-13_case.stl`](eink_2-13_case.stl) | [`eink_2-13_case.jscad`](eink_2-13_case.jscad) | 0.1.1 | Case for [2.13" Lilygo eink display](https://www.aliexpress.com/item/4000626947976.html) |
|
||||
| [`pir-holder.stl`](pir-holder.stl) | [`pir-holder.jscad`](pir-holder.jscad) | 0.1.1 | PIR holder |
|
||||
|
|
20
cable-holder.jscad
Normal file
20
cable-holder.jscad
Normal file
|
@ -0,0 +1,20 @@
|
|||
/*
|
||||
* title : Cable holder for velcro tape
|
||||
* author : Knut Ahlers
|
||||
* revision : 0.1.0
|
||||
*/
|
||||
|
||||
/* exported main */
|
||||
function main () {
|
||||
return difference(
|
||||
union(
|
||||
cube({ size: [55, 21, 2] }),
|
||||
cube({ size: [2, 21, 3] }).translate([0, 0, 2]),
|
||||
cube({ size: [2, 21, 3] }).translate([53, 0, 2]),
|
||||
cube({ size: [2, 21, 3] }).translate([26.5, 0, 2])
|
||||
),
|
||||
cube({ size: [55, 17, 1.2] }).translate([0, 2, 1.8])
|
||||
)
|
||||
}
|
||||
|
||||
// vim: set ft=javascript:
|
1066
cable-holder.stl
Normal file
1066
cable-holder.stl
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue