merging on up

This commit is contained in:
Bob - Home - Windows 2017-10-24 23:30:18 -04:00
commit e23dae799b
3 changed files with 3 additions and 2 deletions

View File

@ -208,12 +208,12 @@ module keytext() {
} }
} }
module connectors($stem_profile) { module connectors(stem_profile) {
intersection() { intersection() {
for (connector_pos = $connectors) { for (connector_pos = $connectors) {
translate([connector_pos[0], connector_pos[1], $stem_inset]) { translate([connector_pos[0], connector_pos[1], $stem_inset]) {
rotate([0, 0, $stem_rotation]){ rotate([0, 0, $stem_rotation]){
color([1, .6941, .2]) connector($stem_profile, $has_brim); color([1, .6941, .2]) connector(stem_profile, $has_brim);
} }
} }
} }

Binary file not shown.

View File

@ -6,6 +6,7 @@
// special variables, but that's a limitation of SCAD we have to work around // special variables, but that's a limitation of SCAD we have to work around
/* TODO: /* TODO:
* pull out side sculpting options to let people tweak them?
* can now measure keycaps very accurately. need to redo measurements: [x] SA [ ] DCS [X] DSA [X] OEM? * can now measure keycaps very accurately. need to redo measurements: [x] SA [ ] DCS [X] DSA [X] OEM?
* Add inset stem to all profiles that need it. [x] OEM [ ] DCS? * Add inset stem to all profiles that need it. [x] OEM [ ] DCS?
* customizer version where everything is copy/pasted in. needs to be last. * customizer version where everything is copy/pasted in. needs to be last.