1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #pragma once
- #include <iostream>
- #include <AP_gtest.h>
- #include <AP_Math/AP_Math.h>
- template <typename T>
- ::std::ostream& operator<<(::std::ostream& os, const Matrix3<T>& m)
- {
- return os << "{{" << m.a.x << ", " << m.a.y << ", " << m.a.z << "}, " <<
- "{" << m.b.x << ", " << m.b.y << ", " << m.b.z << "}, " <<
- "{" << m.c.x << ", " << m.c.y << ", " << m.c.z << "}}";
- }
- template <typename T>
- ::std::ostream& operator<<(::std::ostream& os, const Vector3<T>& v)
- {
- return os << "{" << v.x << ", " << v.y << ", " << v.z << "}";
- }
|