------------------------------------------------------------------------------
| 2668 | |
| 2669 | //------------------------------------------------------------------------------ |
| 2670 | void vtkDataSetSurfaceFilter::InitQuadHashTraversal() |
| 2671 | { |
| 2672 | this->QuadHashTraversalIndex = 0; |
| 2673 | if (this->QuadHashLength == 0) |
| 2674 | { |
| 2675 | this->QuadHashTraversal = nullptr; |
| 2676 | } |
| 2677 | else |
| 2678 | { |
| 2679 | this->QuadHashTraversal = this->QuadHash[0]; |
| 2680 | } |
| 2681 | } |
| 2682 | |
| 2683 | //------------------------------------------------------------------------------ |
| 2684 | vtkFastGeomQuad* vtkDataSetSurfaceFilter::GetNextVisibleQuadFromHash() |
no outgoing calls
no test coverage detected