GeoTableItem.h

Go to the documentation of this file.
00001 #pragma once
00002 #include "maxheap.h"
00003 #include "matrix3.h"
00004 #include "point3.h"
00005 #include "nametab.h"
00006 
00007 class GeoTableItem : public MaxHeapOperators
00008 {
00009 public:
00010     bool m_geoInfo;
00011     Matrix3 m_matrix;
00012     NameTab m_names;
00013     Point3 m_pts[4];
00014     Point3 m_scale;
00015 
00016     GeoTableItem() : m_geoInfo(false), m_matrix(1)
00017     {
00018         m_names.SetSize(0);
00019     }
00020 };