------------------------------------------------------------------------------
| 895 | |
| 896 | //------------------------------------------------------------------------------ |
| 897 | int vtkExprTkFunctionParser::IsVectorResult() |
| 898 | { |
| 899 | if (!this->Evaluate()) |
| 900 | { |
| 901 | return 0; |
| 902 | } |
| 903 | return (this->ResultType == ExprTkResultType::e_vector); |
| 904 | } |
| 905 | |
| 906 | //------------------------------------------------------------------------------ |
| 907 | double* vtkExprTkFunctionParser::GetVectorResult() |
no test coverage detected