mirror of
https://github.com/rsheldiii/KeyV2.git
synced 2025-02-02 05:32:41 +00:00
22 lines
707 B
OpenSCAD
22 lines
707 B
OpenSCAD
// 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
|
|
|
|
include <./includes.scad>
|
|
|
|
|
|
|
|
|
|
u(1) choc() {
|
|
flared_support() tined_stem_support() sa_row(1){
|
|
$stem_support_height = 2;
|
|
low_profile() {
|
|
key();
|
|
}
|
|
}
|
|
}
|
|
|
|
/* translate_u(1,0) u(1) choc() row_profile("oem") low_profile() key(); */
|