| 193 | public: |
| 194 | MidpointCoordinates() = default; |
| 195 | MidpointCoordinates(const double coord[3], vtkIdType id) |
| 196 | { |
| 197 | this->Coordinate[0] = coord[0]; |
| 198 | this->Coordinate[1] = coord[1]; |
| 199 | this->Coordinate[2] = coord[2]; |
| 200 | this->ID = id; |
| 201 | } |
| 202 | double Coordinate[3]; |
| 203 | vtkIdType ID; |
| 204 | }; |
no outgoing calls
no test coverage detected