diff options
author | Tom Short <tshort.rlists@gmail.com> | 2017-04-02 15:34:46 -0400 |
---|---|---|
committer | Tom Short <tshort.rlists@gmail.com> | 2017-04-02 15:34:46 -0400 |
commit | 162314b829de966b0b94b46785f87d4ef245a985 (patch) | |
tree | 3b4e07a94143d6c90e54ccd476e4307173f9d96b | |
parent | 6e6b11af6a4bb8644f1a293490760996312c5340 (diff) |
Default sizes
-rw-r--r-- | src/dactyl_keyboard/dactyl.clj | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/dactyl_keyboard/dactyl.clj b/src/dactyl_keyboard/dactyl.clj index 918cf0a..d8861fb 100644 --- a/src/dactyl_keyboard/dactyl.clj +++ b/src/dactyl_keyboard/dactyl.clj @@ -13,13 +13,13 @@ ;; Shape parameters ;; ;;;;;;;;;;;;;;;;;;;;;; -(def nrows 5) -(def ncols 6) +(def nrows 4) +(def ncols 5) (def α (/ π 12)) ; curvature of the columns (def β (/ π 36)) ; curvature of the rows (def centerrow (- nrows 3)) ; controls front-back tilt -(def centercol 2) ; controls left-right tilt / tenting (higher number is more tenting) +(def centercol 3) ; controls left-right tilt / tenting (higher number is more tenting) (def tenting-angle (/ π 12)) ; or, change this for more precise tenting control (def column-style (if (> nrows 5) :orthographic :standard)) ; options include :standard, :orthographic, and :fixed @@ -32,7 +32,7 @@ (def thumb-offsets [6 -3 7]) -(def keyboard-z-offset 16) ; controls overall height; original=9 with centercol=3; use 15 for centercol=2 +(def keyboard-z-offset 9) ; controls overall height; original=9 with centercol=3; use 16 for centercol=2 (def extra-width 2.5) ; extra space between the base of keys; original= 2 (def extra-height 1.0) ; original= 0.5 |