------------------------------------------------------------------------------
| 114 | |
| 115 | //------------------------------------------------------------------------------ |
| 116 | void vtkHyperTreeGridEvaluateCoarse::ProcessNodeNoChange( |
| 117 | vtkHyperTreeGridNonOrientedCursor* outCursor) |
| 118 | { |
| 119 | vtkIdType id = outCursor->GetGlobalNodeIndex(); |
| 120 | this->OutData->CopyData(this->InData, id, id); |
| 121 | |
| 122 | if (outCursor->IsLeaf() || outCursor->IsMasked()) |
| 123 | { |
| 124 | return; |
| 125 | } |
| 126 | |
| 127 | // Coarse |
| 128 | for (unsigned int ichild = 0; ichild < this->NumberOfChildren; ++ichild) |
| 129 | { |
| 130 | if (this->CheckAbort()) |
| 131 | { |
| 132 | break; |
| 133 | } |
| 134 | outCursor->ToChild(ichild); |
| 135 | // We go through the children's cells |
| 136 | this->ProcessNodeNoChange(outCursor); |
| 137 | outCursor->ToParent(); |
| 138 | } |
| 139 | } |
| 140 | |
| 141 | //------------------------------------------------------------------------------ |
| 142 | void vtkHyperTreeGridEvaluateCoarse::ProcessNode(vtkHyperTreeGridNonOrientedCursor* outCursor) |
no test coverage detected