| 546 | } |
| 547 | |
| 548 | bool BSplineBasis1D::insideSupport(double x) const |
| 549 | { |
| 550 | return (knots.front() <= x) && (x <= knots.back()); |
| 551 | } |
| 552 | |
| 553 | unsigned int BSplineBasis1D::getNumBasisFunctions() const |
| 554 | { |
nothing calls this directly
no outgoing calls
no test coverage detected