------------------------------------------------------------------------------
| 168 | |
| 169 | //------------------------------------------------------------------------------ |
| 170 | static inline void OrderEdge(vtkIdType& e1, vtkIdType& e2) |
| 171 | { |
| 172 | vtkIdType temp1 = e1; |
| 173 | vtkIdType temp2 = e2; |
| 174 | e1 = temp1 < temp2 ? temp1 : temp2; |
| 175 | e2 = temp1 > temp2 ? temp1 : temp2; |
| 176 | } |
| 177 | |
| 178 | //------------------------------------------------------------------------------ |
| 179 | // Instantiate object based on maximum point id. |
no outgoing calls
no test coverage detected