mirror of
https://github.com/rsheldiii/KeyV2.git
synced 2025-07-17 15:17:55 +00:00
add slop factor to size of cutouts in cherry stem
This commit is contained in:
parent
dd6574137f
commit
141ac7c828
2 changed files with 4 additions and 4 deletions
src
|
@ -15,6 +15,8 @@ module sa_row(n=1) {
|
||||||
$corner_radius = 0.25;
|
$corner_radius = 0.25;
|
||||||
// 5th row is usually unsculpted or the same as the row below it
|
// 5th row is usually unsculpted or the same as the row below it
|
||||||
// making a super-sculpted top row (or bottom row!) would be real easy
|
// making a super-sculpted top row (or bottom row!) would be real easy
|
||||||
|
// bottom row would just be 13 tilt and 14.89 total depth
|
||||||
|
// top row would be something new entirely - 18 tilt maybe?
|
||||||
if (n == 1 || n == 5){
|
if (n == 1 || n == 5){
|
||||||
$total_depth = 14.89;
|
$total_depth = 14.89;
|
||||||
$top_tilt = -13;
|
$top_tilt = -13;
|
||||||
|
|
|
@ -60,8 +60,6 @@ $stem_inset = 0;
|
||||||
$stem_rotation = 0;
|
$stem_rotation = 0;
|
||||||
// radius of corners of keycap
|
// radius of corners of keycap
|
||||||
$corner_radius = 1;
|
$corner_radius = 1;
|
||||||
// keystem slop - lengthens the cross and thins out the connector
|
|
||||||
$stem_slop = 0.3;
|
|
||||||
// support type. default is "flared" for easy FDM printing. to disable pass false
|
// support type. default is "flared" for easy FDM printing. to disable pass false
|
||||||
$support_type = "flared";
|
$support_type = "flared";
|
||||||
// key shape type, determines the shape of the key. default is 'rounded square'
|
// key shape type, determines the shape of the key. default is 'rounded square'
|
||||||
|
@ -99,9 +97,9 @@ $cherry_stem = [7.2 - $stem_slop * 2, 5.5 - $stem_slop * 2];
|
||||||
// .005 purely for aesthetics, to get rid of that ugly crosshatch
|
// .005 purely for aesthetics, to get rid of that ugly crosshatch
|
||||||
$cherry_cross = [
|
$cherry_cross = [
|
||||||
// horizontal tine
|
// horizontal tine
|
||||||
[4.03 + $stem_slop, 1.15],
|
[4.03 + $stem_slop, 1.15 + $stem_slop / 3],
|
||||||
// vertical tine
|
// vertical tine
|
||||||
[1.25, $cherry_stem[1] + .005],
|
[1.25 + $stem_slop / 3, $cherry_stem[1] + .005],
|
||||||
];
|
];
|
||||||
|
|
||||||
// diameter of the outside of the rounded cherry stem
|
// diameter of the outside of the rounded cherry stem
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue