------------------------------------------------------------------------------
| 323 | |
| 324 | //------------------------------------------------------------------------------ |
| 325 | bool vtkRandomHyperTreeGridSource::ShouldRefine(vtkIdType level) |
| 326 | { |
| 327 | this->NodeRNG->Next(); |
| 328 | return level < this->MaxDepth && this->NodeRNG->GetValue() < this->SplitFraction; |
| 329 | } |
| 330 | |
| 331 | //------------------------------------------------------------------------------ |
| 332 | double vtkRandomHyperTreeGridSource::GenerateMask(vtkHyperTreeGridNonOrientedCursor* cursor, |
no test coverage detected