| 191 | vtkHigherOrderWedge::~vtkHigherOrderWedge() = default; |
| 192 | |
| 193 | void vtkHigherOrderWedge::PrintSelf(ostream& os, vtkIndent indent) |
| 194 | { |
| 195 | this->Superclass::PrintSelf(os, indent); |
| 196 | os << indent << "Order: " << this->GetOrder(3) << "\n"; |
| 197 | if (this->PointParametricCoordinates) |
| 198 | { |
| 199 | os << indent |
| 200 | << "PointParametricCoordinates: " << this->PointParametricCoordinates->GetNumberOfPoints() |
| 201 | << " entries\n"; |
| 202 | } |
| 203 | os << indent << "Approx: " << this->Approx << "\n"; |
| 204 | } |
| 205 | |
| 206 | void vtkHigherOrderWedge::SetEdgeIdsAndPoints(int edgeId, |
| 207 | const std::function<void(const vtkIdType&)>& set_number_of_ids_and_points, |
nothing calls this directly
no test coverage detected