| 37 | public: |
| 38 | static vtkPWCallback* New() { return new vtkPWCallback; } |
| 39 | void Execute(vtkObject* vtkNotUsed(caller), unsigned long, void*) override |
| 40 | { |
| 41 | double x[3]; |
| 42 | this->PointWidget->GetPosition(x); |
| 43 | this->LineWidget->SetLinePosition(x); |
| 44 | } |
| 45 | vtkPWCallback() |
| 46 | : LineWidget(nullptr) |
| 47 | , PointWidget(nullptr) |
nothing calls this directly
no test coverage detected