| 468 | } |
| 469 | |
| 470 | void Keyframe::PrintPoints(std::ostream* out) const { |
| 471 | *out << std::right << std::setprecision(4) << std::setfill(' '); |
| 472 | for (const auto& p : Points) { |
| 473 | *out << std::defaultfloat |
| 474 | << std::setw(6) << p.co.X |
| 475 | << std::setw(14) << std::fixed << p.co.Y |
| 476 | << '\n'; |
| 477 | } |
| 478 | *out << std::flush; |
| 479 | } |
| 480 | |
| 481 | void Keyframe::PrintValues(std::ostream* out) const { |
| 482 | // Column widths |