| 174 | } |
| 175 | |
| 176 | ContourLine::ContourLine(bool is_hole) |
| 177 | : std::vector<XY>(), _is_hole(is_hole), _parent(0) {} |
| 178 | |
| 179 | void ContourLine::add_child(ContourLine *child) { |
| 180 | assert(!_is_hole && "Cannot add_child to a hole"); |
nothing calls this directly
no outgoing calls
no test coverage detected