17 lines
487 B
OpenSCAD
17 lines
487 B
OpenSCAD
/* Generated by BOLTS, do not modify */
|
|
/* Copyright by: Johannes Reinhardt <jreinhardt@ist-dein-freund.de> */
|
|
/* MIT <http://opensource.org/licenses/MIT> */
|
|
function roundBattery_table_0(idx) =
|
|
//h, d
|
|
idx == "AA" ? [50.5, 14.5] :
|
|
idx == "A" ? [50.0, 17.0] :
|
|
idx == "C" ? [50.0, 26.2] :
|
|
idx == "AAA" ? [44.5, 10.5] :
|
|
idx == "D" ? [61.5, 34.2] :
|
|
idx == "N" ? [30.2, 12.0] :
|
|
idx == "AAAA" ? [42.5, 8.3] :
|
|
idx == "Sub-C" ? [42.9, 22.2] :
|
|
idx == "1/2AA" ? [24.0, 14.5] :
|
|
"Error";
|
|
|