2015年8月27日星期四

初試用 OpenSCAD 劃 ActionCam 3D 架.

之前劃 3D Model 去印都係用 Sketchup 劃, 近兩日才認識這個 OpenSCAD  http://www.openscad.org/ 加上想做個 ActionCAM 立體拍片架, 所以就小試牛刀.

相比用 Sketchup. 寫 Script 對我來說相對容易同好玩.


OpenSCAD Model




這種做法是參考網上的 GoPro 3D.

OpenSCAD File:


module sjcambase() {
    difference() {
        cube([70,52,30]);

        translate([5,5,5]) {
            linear_extrude(26) {
                square([60,42]);
            }
        }
        
        translate([10+11,15+5+11,-1]) {
            linear_extrude(7) {
                circle(d=22);
            }
        }
        
        
        translate([6+5+43,6+5+23,-1]) {
            linear_extrude(7) {
                circle(d=12);
            }    
        }
        
        translate([8 + 5 + 40,5+42+5+1,8+5 + 6]) {
            rotate([90,0,0]) {
                linear_extrude(7) {
                    circle(d=16);
                }
            }
        }
        
        translate([5+60-1,5,5+13]) {
            cube([3,42, 8]);
        }
    }
}


difference() {
    union() {
        translate([70,52+(42-15-11-5-1),0]) {
            rotate([0,0,180]) {    
                sjcambase();
            }
        }
        
        translate([65,0,0]) {
            sjcambase();
        }
    }
    
    translate([65-1,11+4,5]) {
        cube([7,42-10, 26]);
    }
}

以上謹對應我手上的 ActionCAM. 別的 Action CAM 有需要修改大少及按鈕位置.

沒有留言:

發佈留言