| 3157 | } |
| 3158 | |
| 3159 | void PathObject::setClosingPoint(MapCoordVector::size_type index, const MapCoord& coord) |
| 3160 | { |
| 3161 | auto& out_coord = coords[index]; |
| 3162 | out_coord = coord; |
| 3163 | out_coord.setCurveStart(false); |
| 3164 | out_coord.setHolePoint(true); |
| 3165 | out_coord.setClosePoint(true); |
| 3166 | } |
| 3167 | |
| 3168 | void PathObject::updateEvent() const |
| 3169 | { |
no test coverage detected