mirror of
https://github.com/rsheldiii/KeyV2.git
synced 2024-11-22 13:13:40 +00:00
fd68c281c3
Here's how to implement a custom stem
24 lines
740 B
OpenSCAD
24 lines
740 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>
|
|
|
|
|
|
// example key
|
|
/* $stem_throw = 1; */
|
|
$stem_type = "custom";
|
|
$outset_legends = true;
|
|
dcs_row(5) front_legend("j") key();
|
|
|
|
// example row
|
|
/* for (x = [0:1:4]) {
|
|
translate_u(0,-x) dcs_row(x) key();
|
|
} */
|
|
|
|
// example layout
|
|
/* preonic_default("dcs"); */
|