1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-08-16 18:01:40 +00:00

more stuff

This commit is contained in:
Lars Mueller 2025-05-31 02:57:21 +02:00
parent 0b8edb8019
commit 3de3bead7b
6 changed files with 75 additions and 42 deletions

View file

@ -219,7 +219,7 @@ public:
inline std::ostream& operator<<(std::ostream& os, const quaternion& q)
{
os << q.X << "\t" << q.Y << "\t" << q.Z << "\t" << q.W;
os << "(" << q.X << "\t" << q.Y << "\t" << q.Z << "\t" << q.W << ")";
return os;
}