| 33 | static void setSize(OctreeNode& node, float value) { node.size = value; } |
| 34 | |
| 35 | static size_t firstAtom(const OctreeNode& node) { return node.firstAtom; } |
| 36 | static void setFirstAtom(OctreeNode& node, size_t value) { node.firstAtom = value; } |
| 37 | |
| 38 | static const OctreeNode* child(const OctreeNode& node, int index) { return node.children[index].get(); } |
nothing calls this directly
no outgoing calls
no test coverage detected