------------------------------------------------------------------------------
| 3028 | |
| 3029 | //------------------------------------------------------------------------------ |
| 3030 | int vtkReebGraph::StreamTriangle(vtkIdType vertex0Id, double scalar0, vtkIdType vertex1Id, |
| 3031 | double scalar1, vtkIdType vertex2Id, double scalar2) |
| 3032 | { |
| 3033 | return this->Storage->StreamTriangle(vertex0Id, scalar0, vertex1Id, scalar1, vertex2Id, scalar2); |
| 3034 | } |
| 3035 | |
| 3036 | //------------------------------------------------------------------------------ |
| 3037 | int vtkReebGraph::Implementation::StreamTriangle(vtkIdType vertex0Id, double scalar0, |
nothing calls this directly
no test coverage detected