------------------------------------------------------------------------------
| 17 | |
| 18 | //------------------------------------------------------------------------------ |
| 19 | vtkAnnulus::vtkAnnulus() |
| 20 | { |
| 21 | this->InnerCylinder->SetRadius(0.25); |
| 22 | this->OuterCylinder->SetRadius(0.5); |
| 23 | |
| 24 | this->BooleanOp->AddFunction(this->OuterCylinder); |
| 25 | this->BooleanOp->AddFunction(this->InnerCylinder); |
| 26 | this->BooleanOp->SetOperationTypeToDifference(); |
| 27 | } |
| 28 | |
| 29 | //------------------------------------------------------------------------------ |
| 30 | vtkAnnulus::~vtkAnnulus() = default; |
nothing calls this directly
no test coverage detected