From 2bd9b3b1bb69b89419462ad4ab7a8e4ad25bfdaf Mon Sep 17 00:00:00 2001 From: epicfacethe3rd Date: Fri, 30 Jun 2023 02:56:33 -0400 Subject: [PATCH] Add compatability for Cherry 3u Spacebars Sources from dimensioning taken from deskauthority. Will be buying a set of stab wires soon to see if this indeed matches what they claim there --- customizer.scad | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/customizer.scad b/customizer.scad index bd80bec..fff2eb2 100644 --- a/customizer.scad +++ b/customizer.scad @@ -189,8 +189,8 @@ $stabilizer_type = "costar_stabilizer"; // [costar_stabilizer, cherry_stabilizer // Ternaries are ONLY for customizer. they will NOT work if you're using this in // OpenSCAD. you should use stabilized(), openSCAD customizer, // or set $stabilizers directly -// Array of positions of stabilizers -$stabilizers = $key_length >= 6 ? [[-50, 0], [50, 0]] : $key_length >= 2 ? [[-12,0],[12,0]] : []; +// Array of positions of ilizers +$ilizers = $key_length >= 6 ? [[-50, 0], [50, 0]] : $key_length >= 2 ? [[-12,0],[12,0]] : []; // Where the stems are in relation to the center of the keycap, in units. default is one in the center // Shouldn't work in thingiverse customizer, though it has been... @@ -526,7 +526,7 @@ $stabilizer_type = "costar_stabilizer"; // [costar_stabilizer, cherry_stabilizer // OpenSCAD. you should use stabilized(), openSCAD customizer, // or set $stabilizers directly // Array of positions of stabilizers -$stabilizers = $key_length >= 6 ? [[-50, 0], [50, 0]] : $key_length >= 2 ? [[-12,0],[12,0]] : []; +$stabilizers = $key_length >= 6 ? [[-50, 0], [50, 0]] : $key_length >= 3 ? [[-19.5, 0], [19.5, 0]] : $key_length >= 2 ? [[-12,0],[12,0]] : []; // Where the stems are in relation to the center of the keycap, in units. default is one in the center // Shouldn't work in thingiverse customizer, though it has been...