chiark / gitweb /
curveopt: fix handling of empty lines from findcurve
[moebius3.git] / moebius-stand.scad
1 // -*- C -*-
2
3 include <moebius-core.scad>
4 include <commitid.scad>
5
6 sz = moebiuscore_nomsize;
7
8 lsz = [sz*2.4, 6, sz*0.5];
9
10 difference(){
11   union(){
12     cube([5, sz*1.7,   sz*0.5], center=true);
13     cube(lsz, center=true);
14   }
15   rotate([0,0,-25])
16     translate(sz * [0,0,1.9])
17     hull() MoebiusCore();
18   translate(-lsz/2)
19     Commitid_BestCount_M([ lsz[0], lsz[1] ]);
20 }