mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2025-01-19 19:09:36 +00:00
Enable using apply() on VNF and bezier patches.
This commit is contained in:
parent
291353d928
commit
8d753b471b
2 changed files with 25 additions and 21 deletions
|
@ -431,6 +431,10 @@ function affine3d_chain(affines, _m=undef, _i=0) =
|
||||||
function apply(transform,points) =
|
function apply(transform,points) =
|
||||||
points==[] ? [] :
|
points==[] ? [] :
|
||||||
is_vector(points) ? apply(transform, [points])[0] :
|
is_vector(points) ? apply(transform, [points])[0] :
|
||||||
|
is_list(points) && len(points)==2 && is_path(points[0],3) && is_list(points[1]) && is_vector(points[1][0])
|
||||||
|
? [apply(transform, points[0]), points[1]] :
|
||||||
|
is_list(points) && is_list(points[0]) && is_vector(points[0][0])
|
||||||
|
? [for (x=points) apply(transform,x)] :
|
||||||
let(
|
let(
|
||||||
tdim = len(transform[0])-1,
|
tdim = len(transform[0])-1,
|
||||||
datadim = len(points[0])
|
datadim = len(points[0])
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
|
||||||
BOSL_VERSION = [2,0,528];
|
BOSL_VERSION = [2,0,529];
|
||||||
|
|
||||||
|
|
||||||
// Section: BOSL Library Version Functions
|
// Section: BOSL Library Version Functions
|
||||||
|
|
Loading…
Reference in a new issue