| 135 | void AddChildren(octree<LabelSet, 2>::octree_node_pointer self, LabelSet& emptyNode); |
| 136 | void AddChildren(octree<LabelSet, 3>::octree_node_pointer self, LabelSet& emptyNode); |
| 137 | void Insert(vtkIdType anchor) |
| 138 | { |
| 139 | this->insert(anchor); |
| 140 | ++this->TotalAnchors; |
| 141 | } |
| 142 | void Increment() { ++this->TotalAnchors; } |
| 143 | vtkIdType GetLocalAnchorCount() const { return static_cast<vtkIdType>(this->size()); } |
| 144 | vtkIdType GetTotalAnchorCount() const { return this->TotalAnchors; } |
no test coverage detected