| 3118 | } |
| 3119 | |
| 3120 | void PathObject::updatePathCoords() const |
| 3121 | { |
| 3122 | auto part_start = VirtualPath::size_type { 0 }; |
| 3123 | for (auto& part : path_parts) |
| 3124 | { |
| 3125 | part.first_index = part_start; |
| 3126 | part.last_index = part.path_coords.update(part_start); |
| 3127 | part_start = part.last_index+1; |
| 3128 | } |
| 3129 | } |
| 3130 | |
| 3131 | void PathObject::recalculateParts() |
| 3132 | { |
no test coverage detected