Skip to content

Commit 0033358

Browse files
Noted an error that will need to be adjusted in the future
1 parent 6880440 commit 0033358

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

src/eval/SplineSpaceEvaluator.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,9 @@ namespace eval
8888

8989
Eigen::MatrixXd SplineSpaceEvaluator::evaluateFirstDerivativesFromParamToSpatial() const
9090
{
91+
// NOTE THIS ISSUE and TODO: this function is actually from parent to parametric coordinates
92+
throw std::runtime_error( "evaluateFirstDerivativesFromParamToSpatial not implemented for NURBSSpaceEvaluator" );
93+
9194
const auto first_derivs = evaluateFirstDerivatives();
9295
if( not param::isCartesian( mSpline.basisComplex().parametricAtlas().parentDomain( mCurrentCell.value() ) ) )
9396
throw std::runtime_error( "ParamToSpatial not supported on non-square domains" );

0 commit comments

Comments
 (0)