2017-08-13 16:15:42 +00: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 04:50:48 +00:00
|
|
|
// lets it remain easy to use key.scad like before (except without key profiles)
|
2017-08-13 16:15:42 +00:00
|
|
|
// without having to rely on this file. Unfortunately that means setting tons of
|
2017-09-25 04:04:34 +00:00
|
|
|
// special variables, but that's a limitation of SCAD we have to work around
|
2017-08-13 16:15:42 +00:00
|
|
|
|
2020-02-23 02:11:33 +00:00
|
|
|
include <./includes.scad>
|
2017-09-28 16:39:11 +00:00
|
|
|
|
2017-08-12 05:10:48 +00:00
|
|
|
|
2019-12-16 21:45:03 +00:00
|
|
|
// example key
|
|
|
|
dcs_row(5) legend("⇪", size=9) key();
|
|
|
|
|
|
|
|
// example row
|
|
|
|
/* for (x = [0:1:4]) {
|
|
|
|
translate_u(0,-x) dcs_row(x) key();
|
|
|
|
} */
|
|
|
|
|
|
|
|
// example layout
|
2020-02-15 06:02:23 +00:00
|
|
|
/* preonic_default("dcs"); */
|