2017-08-13 12:15:42 -04:00
|
|
|
// the point of this file is to be a sort of DSL for constructing keycaps.
|
|
|
|
// when you create a method chain you are just changing the parameters
|
|
|
|
// key.scad uses, it doesn't generate anything itself until the end. This
|
2017-10-17 00:50:48 -04:00
|
|
|
// lets it remain easy to use key.scad like before (except without key profiles)
|
2017-08-13 12:15:42 -04:00
|
|
|
// without having to rely on this file. Unfortunately that means setting tons of
|
2017-09-25 00:04:34 -04:00
|
|
|
// special variables, but that's a limitation of SCAD we have to work around
|
2017-08-13 12:15:42 -04:00
|
|
|
|
2017-12-20 00:47:03 -05:00
|
|
|
use <src/key.scad>
|
2017-09-28 12:39:11 -04:00
|
|
|
|
2017-12-20 00:47:03 -05:00
|
|
|
include <src/settings.scad>
|
2018-02-04 15:43:17 -05:00
|
|
|
include <src/key_sizes.scad>
|
|
|
|
include <src/key_profiles.scad>
|
|
|
|
include <src/key_types.scad>
|
|
|
|
include <src/key_transformations.scad>
|
2018-07-26 01:48:15 -04:00
|
|
|
include <src/key_helpers.scad>
|
2017-08-12 01:10:48 -04:00
|
|
|
|
2019-09-07 16:59:29 -04:00
|
|
|
|
|
|
|
|
|
|
|
u(1) choc() {
|
2019-09-10 02:32:18 -04:00
|
|
|
flared_support() tined_stem_support() sa_row(1){
|
2019-09-07 16:59:29 -04:00
|
|
|
$stem_support_height = 2;
|
|
|
|
low_profile() {
|
|
|
|
key();
|
|
|
|
}
|
|
|
|
}
|
2019-09-06 22:12:49 -04:00
|
|
|
}
|
2019-09-07 16:59:29 -04:00
|
|
|
|
|
|
|
/* translate_u(1,0) u(1) choc() row_profile("oem") low_profile() key(); */
|