mirror of
https://github.com/rsheldiii/KeyV2.git
synced 2025-09-13 15:49:50 +00:00
promote sculpted, rounded squares into their own shape
This commit is contained in:
parent
aa3fed7755
commit
50ad7c73ed
8 changed files with 124 additions and 114 deletions
|
@ -2,6 +2,7 @@ $fs=.1;
|
|||
unit = 19.05;
|
||||
|
||||
include <shapes/ISO_enter.scad>
|
||||
include <shapes/sculpted_square.scad>
|
||||
include <shapes/rounded_square.scad>
|
||||
include <shapes/square.scad>
|
||||
include <shapes/oblong.scad>
|
||||
|
@ -9,6 +10,8 @@ include <shapes/oblong.scad>
|
|||
module key_shape(size, delta, progress = 0) {
|
||||
if ($key_shape_type == "iso_enter") {
|
||||
ISO_enter_shape(size, delta, progress);
|
||||
} else if ($key_shape_type == "sculpted_square") {
|
||||
sculpted_square_shape(size, delta, progress);
|
||||
} else if ($key_shape_type == "rounded_square") {
|
||||
rounded_square_shape(size, delta, progress);
|
||||
} else if ($key_shape_type == "square") {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue