1
0
Fork 0
mirror of https://github.com/Luzifer/3dmodels.git synced 2024-10-18 13:14:18 +00:00
3dmodels/cable-holder.jscad

21 lines
475 B
Text
Raw Normal View History

/*
* 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: