00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00030 #ifndef _MATVECIO_H_
00031 #include <QTextStream>
00032 #include "matvec3D.h"
00033
00034
00035 QTextStream& operator>>(QTextStream &is, vec3 &v);
00036 QTextStream& operator<<(QTextStream &os, const vec3 &v);
00037
00038 QTextStream& operator>>(QTextStream &is, position &p);
00039 QTextStream& operator<<(QTextStream &os, const position &p);
00040
00041 QTextStream& operator>>(QTextStream &is, mat3 &m);
00042 QTextStream& operator<<(QTextStream &os, const mat3 &m);
00043
00044 QTextStream& operator>>(QTextStream &is, Quaternion &q);
00045 QTextStream& operator<<(QTextStream &os, const Quaternion &q);
00046
00047 QTextStream& operator>>(QTextStream &is, transf &tr);
00048 QTextStream& operator<<(QTextStream &os, const transf &tr);
00049
00050 int readTransRotFromQTextStream(QTextStream &is,transf &tr);
00051
00052 #define _MATVECIO_H_
00053 #endif
00054
00055
00056
00057
00058