| 112 | SortOnAxis(int axis) : axis(axis) {} |
| 113 | |
| 114 | bool operator()(const Entry& lhs, const Entry& rhs) const |
| 115 | { |
| 116 | return lhs.point[axis] < rhs.point[axis]; |
| 117 | } |
| 118 | }; |
| 119 | |
| 120 | // calculate particle bounds and longest axis |
nothing calls this directly
no outgoing calls
no test coverage detected