chiark / gitweb /
fairphone4-case-tripod: wip
[reprap-play.git] / fairphone4-case-tripod.scad
1 // -*- C -*-
2
3 include <camera-mount.scad>
4
5 cube_sz = [8,8,8];
6
7 module Mount(){
8   difference(){
9     translate([0, cube_sz[1]/2, cube_sz[2]/2])
10       cube(cube_sz, center=true);
11     translate([0, 0, cube_sz[2]/2])
12       rotate([90,0,0])
13       render() CameraMountThread(cube_sz[1]);
14   }
15 }
16
17 module CaseMounted(){ ////toplevel
18   render() Case();
19   translate([ phone_width/2,
20               -phone_height - cube_sz[1],
21               epp3[1] - case_th_bottom ])
22     Mount();
23 }
24
25 //// toplevels-from:
26 include <fairphone4-case.scad>
27 $suppress_hinge = true;