We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6880440 commit 0033358Copy full SHA for 0033358
1 file changed
src/eval/SplineSpaceEvaluator.cpp
@@ -88,6 +88,9 @@ namespace eval
88
89
Eigen::MatrixXd SplineSpaceEvaluator::evaluateFirstDerivativesFromParamToSpatial() const
90
{
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
+
94
const auto first_derivs = evaluateFirstDerivatives();
95
if( not param::isCartesian( mSpline.basisComplex().parametricAtlas().parentDomain( mCurrentCell.value() ) ) )
96
throw std::runtime_error( "ParamToSpatial not supported on non-square domains" );
0 commit comments