| 32 | void clear(); |
| 33 | |
| 34 | MatrixIr get_self_intersecting_pairs() const { |
| 35 | if (!m_intersecting_pairs.empty()) |
| 36 | return MatrixUtils::rowstack(m_intersecting_pairs); |
| 37 | else |
| 38 | return MatrixIr::Zero(0, 2); |
| 39 | } |
| 40 | |
| 41 | public: |
| 42 | void handle_intersection_candidate(size_t f_idx_1, size_t f_idx_2); |