| 2077 | } |
| 2078 | |
| 2079 | void PathObject::appendPathPart(const PathPart &part) |
| 2080 | { |
| 2081 | coords.reserve(coords.size() + part.size()); |
| 2082 | for (std::size_t i = 0; i < part.size(); ++i) |
| 2083 | coords.emplace_back(part.path->coords[part.first_index + i]); |
| 2084 | |
| 2085 | recalculateParts(); |
| 2086 | setOutputDirty(); |
| 2087 | } |
| 2088 | |
| 2089 | void PathObject::reverse() |
| 2090 | { |
no test coverage detected