| 2068 | } |
| 2069 | |
| 2070 | void PathObject::appendPath(const PathObject* other) |
| 2071 | { |
| 2072 | coords.reserve(coords.size() + other->coords.size()); |
| 2073 | coords.insert(coords.end(), other->coords.begin(), other->coords.end()); |
| 2074 | |
| 2075 | recalculateParts(); |
| 2076 | setOutputDirty(); |
| 2077 | } |
| 2078 | |
| 2079 | void PathObject::appendPathPart(const PathPart &part) |
| 2080 | { |
no test coverage detected