Viewer
A plugin-based viewer for learning Computer Graphics and OpenGL
core/include/vector.h
00001 #ifndef VECTOR_H
00002 #define VECTOR_H
00003 
00004 #include <QVector3D>
00005 #include <iostream>
00006 
00007 
00054 typedef QVector3D Vector;
00055 
00056 std::ostream& operator<< (std::ostream &os, const Vector &p);
00057 
00058 #endif
00059 
00060 
 All Classes Functions