00001 #ifndef POINT_H
00002 #define POINT_H
00003
00004 #include "core_global.h"
00005 #include <QVector3D>
00006 #include <iostream>
00007
00041 typedef QVector3D Point;
00042
00043 std::ostream& operator<< (std::ostream &os, const Point &p);
00044
00045 #endif