mirror of
https://github.com/revarbat/BOSL2.git
synced 2025-08-01 13:40:33 +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:
@@ -606,8 +606,7 @@ function plane_intersection(plane1,plane2,plane3) =
|
||||
let(
|
||||
matrix = [for(p=[plane1,plane2]) select(p,0,2)],
|
||||
rhs = [for(p=[plane1,plane2]) p[3]],
|
||||
point = linear_solve(matrix,rhs),
|
||||
dd=echo(point=point, normal=normal)
|
||||
point = linear_solve(matrix,rhs)
|
||||
)
|
||||
[point, point+normal];
|
||||
|
||||
|
Reference in New Issue
Block a user