| 34 | vtkHigherOrderCurve::~vtkHigherOrderCurve() = default; |
| 35 | |
| 36 | void vtkHigherOrderCurve::PrintSelf(ostream& os, vtkIndent indent) |
| 37 | { |
| 38 | this->Superclass::PrintSelf(os, indent); |
| 39 | os << indent << "Order: " << this->GetOrder(0) << "\n"; |
| 40 | if (this->PointParametricCoordinates) |
| 41 | { |
| 42 | os << indent |
| 43 | << "PointParametricCoordinates: " << this->PointParametricCoordinates->GetNumberOfPoints() |
| 44 | << " entries\n"; |
| 45 | } |
| 46 | os << indent << "Approx: " << this->Approx << "\n"; |
| 47 | } |
| 48 | |
| 49 | void vtkHigherOrderCurve::Initialize() {} |
| 50 |
nothing calls this directly
no test coverage detected