mirror of
https://github.com/revarbat/BOSL2.git
synced 2025-08-24 01:43:08 +02:00
bug fix qr factorization, removed echo in plane intersection, fixed
bezier_surface so vnf arg is in right order
This commit is contained in:
@@ -923,12 +923,12 @@ function patch_reverse(patch) = [for (row=patch) reverse(row)];
|
||||
// ];
|
||||
// vnf = bezier_surface(patches=[patch1, patch2], splinesteps=16);
|
||||
// polyhedron(points=vnf[0], faces=vnf[1]);
|
||||
function bezier_surface(patches=[], splinesteps=16, i=0, vnf=[[],[]]) =
|
||||
function bezier_surface(patches=[], splinesteps=16, vnf=[[],[]], i=0) =
|
||||
let(
|
||||
vnf = (i >= len(patches))? vnf :
|
||||
bezier_patch(patches[i], splinesteps=splinesteps, vnf=vnf)
|
||||
) (i >= len(patches))? vnf :
|
||||
bezier_surface(patches=patches, splinesteps=splinesteps, i=i+1, vnf=vnf);
|
||||
bezier_surface(patches=patches, splinesteps=splinesteps, vnf=vnf, i=i+1);
|
||||
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user