Replace an existing point with a new point
| 460 | |
| 461 | // Replace an existing point with a new point |
| 462 | void Keyframe::UpdatePoint(int64_t index, Point p) { |
| 463 | // Remove matching point |
| 464 | RemovePoint(index); |
| 465 | |
| 466 | // Add new point |
| 467 | AddPoint(p); |
| 468 | } |
| 469 | |
| 470 | void Keyframe::PrintPoints(std::ostream* out) const { |
| 471 | *out << std::right << std::setprecision(4) << std::setfill(' '); |
nothing calls this directly
no outgoing calls
no test coverage detected