MCPcopy Create free account
hub / github.com/Kitware/VTK / EdgeEndpoints

Function EdgeEndpoints

IO/NetCDF/vtkSLACReader.h:160–172  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 2

vtkSLACReader.hFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected