------------------------------------------------------------------------------
| 1674 | |
| 1675 | //------------------------------------------------------------------------------ |
| 1676 | int vtkFunctionParser::GetMathConstantStringLength(int mathConstantNumber) |
| 1677 | { |
| 1678 | switch (mathConstantNumber) |
| 1679 | { |
| 1680 | case VTK_PARSER_IHAT: |
| 1681 | case VTK_PARSER_JHAT: |
| 1682 | case VTK_PARSER_KHAT: |
| 1683 | return 4; |
| 1684 | default: |
| 1685 | vtkWarningMacro("Unknown math constant"); |
| 1686 | return 0; |
| 1687 | } |
| 1688 | } |
| 1689 | |
| 1690 | //------------------------------------------------------------------------------ |
| 1691 | int vtkFunctionParser::GetVariableNameLength(int variableNumber) |
no outgoing calls
no test coverage detected