Fixed corner and top/bottom edge orientations.

This commit is contained in:
Revar Desmera
2019-04-22 01:08:41 -07:00
parent cc36235736
commit 7e1598d66d
18 changed files with 550 additions and 465 deletions

View File

@@ -885,7 +885,7 @@ function patch_scale(patch, v=[1,1,1], cp=[0,0,0]) = [for(row=patch) scale_point
// v = Vector axis to rotate round.
// cp = Centerpoint to rotate around.
function patch_rotate(patch, a=undef, v=undef, cp=[0,0,0]) =
[for(row=patch) rotate_points3d(row, v=a, axis=v, cp=cp)] :
[for(row=patch) rotate_points3d(row, a=a, v=v, cp=cp)];
// Function: patches_translate()