Added 2.5u and 2.75u key widths

This commit is contained in:
Mahksy 2021-04-08 19:28:43 +02:00
parent d1fec7e065
commit 8d69ec6c21
1 changed files with 8 additions and 0 deletions

View File

@ -17,6 +17,10 @@ module 1_5u() {
u(1.5) children(); u(1.5) children();
} }
module 1_75u(){
u(1.75) children();
}
module 2u() { module 2u() {
u(2) children(); u(2) children();
} }
@ -25,6 +29,10 @@ module 2_25u() {
u(2.25) children(); u(2.25) children();
} }
module 2_50u() {
u(2.5) children();
}
module 2_75u() { module 2_75u() {
u(2.75) children(); u(2.75) children();
} }