------------------------------------------------------------------------------
| 487 | |
| 488 | //------------------------------------------------------------------------------ |
| 489 | void vtkAxisFollower::Render(vtkRenderer* ren) |
| 490 | { |
| 491 | if (this->EnableDistanceLOD && !this->TestDistanceVisibility()) |
| 492 | { |
| 493 | this->SetVisibility(0); |
| 494 | return; |
| 495 | } |
| 496 | |
| 497 | this->ComputeTransformMatrix(ren); |
| 498 | this->Superclass::Render(ren); |
| 499 | } |
| 500 | |
| 501 | //------------------------------------------------------------------------------ |
| 502 | void vtkAxisFollower::ShallowCopy(vtkProp* prop) |
nothing calls this directly
no test coverage detected