| 83 | float priority; |
| 84 | |
| 85 | bool operator < (const Seed& rhs) const |
| 86 | { |
| 87 | return priority < rhs.priority; |
| 88 | } |
| 89 | }; |
| 90 | |
| 91 | // basic SAP based acceleration structure for point cloud queries |
nothing calls this directly
no outgoing calls
no test coverage detected