MCPcopy Create free account
hub / github.com/OpenShot/libopenshot / PrintPoints

Method PrintPoints

src/KeyFrame.cpp:470–479  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

468}
469
470void 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
481void Keyframe::PrintValues(std::ostream* out) const {
482 // Column widths

Callers 1

KeyFrame.cppFile · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected