1
0
Fork 0
mirror of https://github.com/rsheldiii/KeyV2.git synced 2025-03-10 08:42:53 +00:00
KeyV2/keys.scad

29 lines
888 B
OpenSCAD
Raw Normal View History

// 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
// lets it remain easy to use key.scad like before (except without key profiles)
// without having to rely on this file. Unfortunately that means setting tons of
// special variables, but that's a limitation of SCAD we have to work around
use <src/key.scad>
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>
include <src/key_helpers.scad>
2019-09-07 16:59:29 -04:00
u(1) choc() {
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-07 16:59:29 -04:00
/* translate_u(1,0) u(1) choc() row_profile("oem") low_profile() key(); */