| 183 | } |
| 184 | |
| 185 | void ContourLine::clear_parent() { |
| 186 | assert(is_hole() && "Cannot clear parent of non-hole"); |
| 187 | assert(_parent != 0 && "Null parent ContourLine"); |
| 188 | _parent = 0; |
| 189 | } |
| 190 | |
| 191 | const ContourLine::Children &ContourLine::get_children() const { |
| 192 | assert(!_is_hole && "Cannot get_children of a hole"); |
no outgoing calls
no test coverage detected