Guest User

Untitled

a guest
Mar 21st, 2022
19
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.64 KB | None | 0 0
  1. // Keyswitch Layout
  2. // (extra_data = rotate_column)
  3. base_switch_layout = [
  4. [[[0,0],1,[0,0,0]],[1,1,1,1],false],
  5. [[[1,0],1,[0,0,0]],[1,1,1,1],false],
  6. [[[2,0],1,[0,0,0]],[1,1,1,1],false],
  7. [[[3,0],1,[0,0,0]],[1,1,1,1],false],
  8. [[[4,0],1,[0,0,0]],[1,1,1,1],false],
  9. [[[0,1],1,[0,0,0]],[1,1,1,1],false],
  10. [[[1,1],1,[0,0,0]],[1,1,1,1],false],
  11. [[[2,1],1,[0,0,0]],[1,1,1,1],false],
  12. [[[3,1],1,[0,0,0]],[1,1,1,1],false],
  13. [[[4,1],1,[0,0,0]],[1,1,1,1],false],
  14. [[[0,2],1,[0,0,0]],[1,1,1,1],false],
  15. [[[1,2],1,[0,0,0]],[1,1,1,1],false],
  16. [[[2,2],1,[0,0,0]],[1,1,1,1],false],
  17. [[[3,2],1,[0,0,0]],[1,1,1,1],false],
  18. [[[4,2],1,[0,0,0]],[1,1,1,1],false],
  19. [[[0,3],1,[0,0,0]],[1,1,1,1],false],
  20. [[[1,3],1,[0,0,0]],[1,1,1,1],false],
  21. [[[2,3],1,[0,0,0]],[1,1,1,1],false],
  22. [[[3,3],1,[0,0,0]],[1,1,1,1],false],
  23. [[[4,3],1,[0,0,0]],[1,1,1,1],false],
  24. ];
  25.  
  26. /* Case Parameters */
  27. // Type of case to generate
  28. case_type = "plate_case"; // [sandwich, plate_case, backplate_case]
  29. // Thickness of case walls
  30. case_wall_thickness = 2;
  31. // Case wall draft angle (convex cases only)
  32. case_wall_draft_angle = [];
  33. // Width of the case chamfer (convex cases only)
  34. case_chamfer_width = 1;
  35. // Angle of the case chamfer (convex cases only)
  36. case_chamfer_angle = 45;
  37. // Height of the vertical portion at the bottom of the case
  38. // (not including backplate flange)
  39. case_base_height = 2;
  40. // Fit tolerance between interlocking case parts
  41. case_fit_tolerance = 0.2;
  42. // Tenting angle around x-axis
  43. tent_angle_x = [];
  44. // Tenting angle around y-axis (i.e. typing angle)
  45. tent_angle_y = [];
  46. // Point around which keyboard is tented
  47. //tent_point = [];
  48.  
Advertisement
Add Comment
Please, Sign In to add comment