------------------------------------------------------------------------------
| 863 | |
| 864 | //------------------------------------------------------------------------------ |
| 865 | double* vtkFunctionParser::GetVectorResult() |
| 866 | { |
| 867 | if (!(this->IsVectorResult())) |
| 868 | { |
| 869 | vtkErrorMacro("GetVectorResult: no valid vector result"); |
| 870 | return vtkParserVectorErrorResult; |
| 871 | } |
| 872 | return this->Stack; |
| 873 | } |
| 874 | |
| 875 | //------------------------------------------------------------------------------ |
| 876 | const char* vtkFunctionParser::GetScalarVariableName(int i) |