// Copyright (c) 2012-2017 VideoStitch SAS // Copyright (c) 2018 stitchEm #include "libvideostitch/matrix.hpp" #include namespace VideoStitch { template void Vector3::print(std::ostream& s) const { s << "[" << v[0] << "," << v[1] << "," << v[2] << "]"; } template std::ostream& operator<<(std::ostream& s, const Vector3& v) { v.print(s); return s; } template std::ostream& operator<<(std::ostream& s, const Vector3& m); template void Matrix33::print(std::ostream& s) const { s << std::endl; s << "[" << m[0][0] << " " << m[0][1] << " " << m[0][2] << "]" << std::endl; s << "[" << m[1][0] << " " << m[1][1] << " " << m[1][2] << "]" << std::endl; s << "[" << m[2][0] << " " << m[2][1] << " " << m[2][2] << "]" << std::endl; } template std::ostream& operator<<(std::ostream& s, const Matrix33& m) { m.print(s); return s; } template std::ostream& operator<<(std::ostream& s, const Matrix33& m); // explicit instantiations template class Matrix33; template class Vector3; } // namespace VideoStitch