| 87 | } |
| 88 | |
| 89 | BrushPtrVector getSelectedBrushes() |
| 90 | { |
| 91 | BrushPtrVector returnVector; |
| 92 | |
| 93 | GlobalSelectionSystem().foreachBrush([&] (Brush& brush) |
| 94 | { |
| 95 | returnVector.push_back(std::static_pointer_cast<BrushNode>(brush.getBrushNode().shared_from_this())); |
| 96 | }); |
| 97 | |
| 98 | return returnVector; |
| 99 | } |
| 100 | |
| 101 | FacePtrVector getSelectedFaces() |
| 102 | { |
no test coverage detected