| 60 | |
| 61 | |
| 62 | void ObjectMover::addPoint(PathObject* object, MapCoordVector::size_type point_index) |
| 63 | { |
| 64 | Q_ASSERT(point_index < object->getCoordinateCount()); |
| 65 | |
| 66 | auto index_set = insertPointObject(object); |
| 67 | index_set->insert(point_index); |
| 68 | |
| 69 | constraints_calculated = false; |
| 70 | } |
| 71 | |
| 72 | |
| 73 | void ObjectMover::addLine(PathObject* object, MapCoordVector::size_type start_point_index) |
no test coverage detected