39 lines
997 B
OpenSCAD
39 lines
997 B
OpenSCAD
/* [Features] */
|
|
// Enable or disable keyboard deck
|
|
with_keyboard = true;
|
|
|
|
/* [Case walls] */
|
|
// Wall width (thickness)
|
|
wall_width = 2.5000;
|
|
// Wall width (thickness) along upper wall of case
|
|
wall_width_upper = 1.5000;
|
|
// Wall lip height along upper wall of case
|
|
wall_lip_upper = 3.0000;
|
|
// Wall height
|
|
wall_height = 17.2500;
|
|
|
|
/* [Case dimensions] */
|
|
// Width of topmost part of case
|
|
case_width_top = 317.5000;
|
|
// Width of bottom part of case
|
|
case_width_bottom = 319.0000;
|
|
// Length of topmost part of case
|
|
case_length_top = 150.0000;
|
|
// Length of bottom part of case
|
|
case_length_bottom = 151.5000;
|
|
|
|
/* [Keyboard offset] */
|
|
// X offset of keyboard
|
|
keyboard_x_offset = 12.2500;
|
|
// Y offset of keyboard
|
|
keyboard_y_offset = 12.2500;
|
|
|
|
/* [Screw post dimensions] */
|
|
// Top case screw post inner diameter
|
|
screw_post_diameter_inner = 3.00;
|
|
// Top case screw post outer diameter
|
|
screw_post_diameter_outer = 6.25;
|
|
|
|
/* [Render settings] */
|
|
// Number of facets on cylinders
|
|
$fn = 72;
|