| 273 | } |
| 274 | |
| 275 | void BSpline::localKnotRefinement(DenseVector x) |
| 276 | { |
| 277 | // Compute knot insertion matrix |
| 278 | SparseMatrix A = basis.refineKnotsLocally(x); |
| 279 | |
| 280 | // Update control points |
| 281 | updateControlPoints(A); |
| 282 | } |
| 283 | |
| 284 | void BSpline::decomposeToBezierForm() |
| 285 | { |
nothing calls this directly
no test coverage detected