bug fix qr factorization, removed echo in plane intersection, fixed

bezier_surface so vnf arg is in right order
This commit is contained in:
Adrian Mariano
2020-03-09 21:05:57 -04:00
parent 1d10c15d57
commit ee82a8bb97
3 changed files with 4 additions and 5 deletions

View File

@@ -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];