| 39 | { |
| 40 | public: |
| 41 | RadialSort( const geode::Segment3D& segment, |
| 42 | absl::Span< const geode::Point3D > points ) |
| 43 | : segment_( segment ), |
| 44 | plane_{ segment.direction(), segment.vertices()[0].get() }, |
| 45 | points_( points ) |
| 46 | { |
| 47 | } |
| 48 | |
| 49 | absl::FixedArray< geode::index_t > sort() |
| 50 | { |