61 // Boundary found. If it's an edgeline, add it to the boundaries list, if a |
61 // Boundary found. If it's an edgeline, add it to the boundaries list, if a |
62 // conditional line, select it. |
62 // conditional line, select it. |
63 if (candidate->type() == OBJ_CondLine) |
63 if (candidate->type() == OBJ_CondLine) |
64 m_selection << candidate; |
64 m_selection << candidate; |
65 else |
65 else |
66 boundaries.append(std::make_tuple(candidate->vertex(0), candidate->vertex(1))); |
66 boundaries.append({candidate->vertex(0), candidate->vertex(1)}); |
67 |
67 |
68 break; |
68 break; |
69 } |
69 } |
70 } |
70 } |
71 } |
71 } |