------------------------------------------------------------------------------
| 2861 | |
| 2862 | //------------------------------------------------------------------------------ |
| 2863 | int vtkExodusIIReaderPrivate::GetConnTypeIndexFromConnType(int ctyp) |
| 2864 | { |
| 2865 | int i; |
| 2866 | for (i = 0; i < num_conn_types; ++i) |
| 2867 | { |
| 2868 | if (conn_types[i] == ctyp) |
| 2869 | { |
| 2870 | return i; |
| 2871 | } |
| 2872 | } |
| 2873 | return -1; |
| 2874 | } |
| 2875 | |
| 2876 | //------------------------------------------------------------------------------ |
| 2877 | int vtkExodusIIReaderPrivate::GetObjectTypeIndexFromObjectType(int otyp) |
no outgoing calls
no test coverage detected