------------------------------------------------------------------------------
| 679 | |
| 680 | //------------------------------------------------------------------------------ |
| 681 | void vtkHyperTreeGridSource::InitTreeFromDescriptor(vtkHyperTreeGrid* output, |
| 682 | vtkHyperTreeGridNonOrientedCursor* cursor, int treeIdx, int idx[3], int offset) |
| 683 | { |
| 684 | // Subdivide using descriptor |
| 685 | if (!this->DescriptorBits) |
| 686 | { |
| 687 | this->SubdivideFromStringDescriptor(output, cursor, 0, treeIdx, 0, idx, 0, offset); |
| 688 | } |
| 689 | else |
| 690 | { |
| 691 | this->SubdivideFromBitsDescriptor(output, cursor, 0, treeIdx, 0, idx, 0); |
| 692 | } |
| 693 | } |
| 694 | //------------------------------------------------------------------------------ |
| 695 | int vtkHyperTreeGridSource::InitializeFromStringDescriptor() |
| 696 | { |
no test coverage detected