forked from sporkus/PseudoMakeMeKeyCapProfiles
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathexport_cs_column_lateral_homing_dot.scad
More file actions
33 lines (28 loc) · 1.01 KB
/
Copy pathexport_cs_column_lateral_homing_dot.scad
File metadata and controls
33 lines (28 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// Lateral keycaps don't have the slope on one side. This makes it easier to
// slide from one keycap to the other.
//
// Some people prefer this for the inner or outer columns to avoid lifting up
// their finger over the ridges.
//
// Other people don't like it, because it makes it easier to hit the wrong key.
//
// You should place the left and right variation next to each other. So, for
// example, if you wanted to use them on both sides for the pinkies, you would
// print this file twice.
use <gen_sprued_keycaps.scad>
keycap_ids = [
// Left Side
"cs_r2_lateral_l" , // Num Row
"cs_r3_lateral_l", // Top Alpha
"cs_r3_lateral_l", // Home Row
"cs_r4_lateral_l", // Bottom Alpha
// Right Side
"cs_r2_lateral_r" , // Num Row
"cs_r3_lateral_r", // Top Alpha
"cs_r3_lateral_r", // Home Row
"cs_r4_lateral_r", // Bottom Alpha
// Homing
"cs_r3_lateral_l_dot", // Left Homing
"cs_r3_lateral_r_dot", // Right Homing
];
gen_sprued_keycaps(keycap_ids, vertical=true);