Update default.scad

This commit is contained in:
Bob 2020-01-31 00:34:37 -05:00
parent e2f59c8541
commit f9b1c079d1
1 changed files with 7 additions and 1 deletions

View File

@ -7,6 +7,12 @@ gherkin_mapping = [
[1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
];
gherkin_default_legends = [
["q", "w", "e", "r", "t", "y", "u", "i", "o", "p"],
["a", "s", "d", "f", "g", "h", "j", "k", "l", ";"],
["z", "x", "c", "v", "b", "n", "m", ",", ".", "/"],
];
module gherkin_default(profile) {
layout(gherkin_mapping, profile, row_sculpting_offset=1) children();
layout(gherkin_mapping, profile, legends=gherkin_default_legends, row_sculpting_offset=1, row_override=3) children();
}