| 158 | { |
| 159 | } |
| 160 | EdgeEndpoints(vtkIdType endpointA, vtkIdType endpointB) |
| 161 | { |
| 162 | if (endpointA < endpointB) |
| 163 | { |
| 164 | this->MinEndPoint = endpointA; |
| 165 | this->MaxEndPoint = endpointB; |
| 166 | } |
| 167 | else |
| 168 | { |
| 169 | this->MinEndPoint = endpointB; |
| 170 | this->MaxEndPoint = endpointA; |
| 171 | } |
| 172 | } |
| 173 | vtkIdType GetMinEndPoint() const { return this->MinEndPoint; } |
| 174 | vtkIdType GetMaxEndPoint() const { return this->MaxEndPoint; } |
| 175 | bool operator==(const EdgeEndpoints& other) const |
no outgoing calls
no test coverage detected