*** empty log message ***

This commit is contained in:
jiri
2020-01-04 21:58:49 +00:00
parent 2ab28bb5e8
commit 20a34fbc52
3 changed files with 47 additions and 13 deletions

View File

@@ -24,8 +24,10 @@
#define _VECMAT3_H_
#include <stdlib.h>
#ifndef AVOID_STDSTREAM
#include <iostream>
#include <cstring>
#endif
#include <string.h>
#include <math.h>
//forward declaration
@@ -169,6 +171,7 @@ public:
//stream I/O
#ifndef AVOID_STDSTREAM
template <typename T>
std::istream& operator>>(std::istream &s, Vec3<T> &x)
{
@@ -208,8 +211,7 @@ s << x.q[1][0]<<" "<< x.q[1][1]<<" " << x.q[1][2]<<std::endl;
s << x.q[2][0]<<" "<< x.q[2][1]<<" " << x.q[2][2]<<std::endl;
return s;
}
#endif
#endif /* _VECMAT3_H_ */