Merge pull request #172 from rsheldiii/fix-iso-sculpting

Add corner and side sculpting to iso_enter
This commit is contained in:
Bob 2022-10-14 20:05:02 -04:00 committed by GitHub
commit 0a29b1bff8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11920 additions and 29 deletions

File diff suppressed because it is too large Load Diff

View File

@ -59,11 +59,11 @@ function skin_iso_enter_shape(size, delta, progress, thickness_difference) =
add_rounding( add_rounding(
iso_enter_vertices( iso_enter_vertices(
size, size,
delta, [delta.x - $side_sculpting(progress), delta.y - $side_sculpting(progress)],
progress, progress,
thickness_difference thickness_difference
), ),
$corner_radius $corner_radius + $corner_sculpting(progress)
), ),
$shape_facets $shape_facets
); );