| 22 | |
| 23 | static const glm::vec3& center(const OctreeNode& node) { return node.center; } |
| 24 | static void setCenter(OctreeNode& node, const glm::vec3& value) { node.center = value; } |
| 25 | |
| 26 | static const glm::vec3& dipole(const OctreeNode& node) { return node.dipoleMoment; } |
| 27 | static void setDipole(OctreeNode& node, const glm::vec3& value) { node.dipoleMoment = value; } |
nothing calls this directly
no outgoing calls
no test coverage detected